Hi,
I have an asp.net datalist like this:
<asp:DataList ID="DataList_Trips" OnItemCommand="DataList_Trips_ItemCommand" >
<ItemTemplate>
<div class="divListTrips">
</div>
</ItemTemplate>
</asp:DataList>
Is there any chance when I click on the div with the class divListTrips, it will fire the event OnItemCommand?
Thanks in advance. Your help is much appreciated!