Performing Double Click Event in a ListBox [modified]
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
Hi... How can I perform a DoubleClick Event in a ListBox Using JavaScript in Asp.Net 2.0 expecting reply Mahesh.J -- modified at 1:25 Friday 13th July, 2007
-
You can add this atribute to the ListBox (on page load) ListBox1.Attributes.Add("onDBlClick", "javascript:Perform()"); and in the Javascript Perform() function you can do whatever you want.