I wrote code in C# for ASP.Net website , but when i select one item from the list above even doesn’t occur and the execution goes back to Site.Master. I have to put a button to fetch the item from the list, how can i make that even occur when i select the item from list?
Share
Assuming you’re not using
UpdatePanelcontrols, it should be as simple as setting theAutoPostBackproperty of your list to true. If this is false then the event won’t occur until the form is submitted otherwise.