if you are facing an issue of controls rebinding events of jQuery in ASP.net
<script>
function pageLoad(sender, args)
{
if (args.get_isPartialLoad())
{
//Specific code for partial postbacks can go in here.
}
}
</script>
Reference :
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel
<script>
function pageLoad(sender, args)
{
if (args.get_isPartialLoad())
{
//Specific code for partial postbacks can go in here.
}
}
</script>
Reference :
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel
No comments:
Post a Comment