Hello,
I have a user control in which I have many function in its code behind.
I have embedded this user control inside a web form, now whenever I click any button which is actually in user control then page refreshes.
I want to stop this page refresh, so please tell me how I do this with update panel or jquery ajax.
The issue is that I have a lot textboxes and other server controls in user control and on button click their values are saved in DB.
I searched for jquery ajax in user control but found that it can not be used with the user controls as these do not form a actual web url.
So please tell me how I do this without moving server controls from user control to somewhere else.
I have tried with update panel, putting inside user control and even wrapping user control inside update panel in web form and setting EnablePartialRendering="true"
but nothing seems working.
Any help will be really grateful ...
Go to the complete details ...