c# - Asp.Net/Javascript Avoid postback on click on button inside bulleted list, meanwhile call a function from code behind on click event -
i have asp bulleted list link buttons list items. need avoid postback action called on click on button; meanwhile, on click event, have call function code behind. knows how can it?
thank you
to access code behind either need post on ajax query.
to stop post onclick set control autopostback false:
<asp:listcontrol autopostback="false" />
listcontrol.autopostback property not sure want achieve here.
Comments
Post a Comment