I have a page with several update panels and a submit button outside the update panels. The submit button uses client side script to check that a couple of text boxes are filled. If they are it returns true. It should then call the server side code associated
with the button's click event; except it doesn't. UseSubmitBehaviour is set to false. If I set UseSubmitBehavior=true then the Click event fires but it also cause postbacks in all of my update panels and I don't want this. How can I solve this problem?
<body>
<form id="form2" runat="server" >
<div>
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" EnablePartialRendering="true">
<Services>
<asp:ServiceReference Path="~/AutoComplete.asmx"/>
& ...
Go to the complete details ...