Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a webform in asp.net and It had 2 updatepanels .


XML
<updatepanel id="1">
<button id="XYZ">
</updatepanel>




XML
<updatepanel id="2">
<button id="ABC">
</updatepanel>



on button xyz it posts to server to get some details and Populate a div with repater data

i want to stop the partial postback in updatepanel as
we have e.preventdefault in Normal postback

The second updatepanel is updated via a timer tick event

How can i stop the xyz button server call with javascript or jquery


i tried event.preventdefault

and also event.stopimmediatepropagation but it doesnt seem to work
Posted
Comments
sri senthil kumar 30-Apr-13 8:32am    
If it is a asp button use onclientclick to return false. But Why you do so? If you dont want a postback then whats the need of button...
gaurish thakkar 30-Apr-13 10:30am    
i will try onclientclick ... ya and the control is for confirm box

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900