In Asp.Net ListBox, there are no events for Click action. The follwing code is useful in this regard..
[code:c#]
protected void Page_Load(object sender, EventArgs e)
{
if (Request["__EVENTARGUMENT"] != null && Request["__EVENTARGUMENT"] == "submit") {
//your code for click action
}
ListBoxNames.Attributes.Add("ondblclick", ClientScript.GetPostBackEventReference(ListBoxNames, "submit"));
}
[/code]