Hello gurus,
I have two submit buttons on one form but they are not working.
All controls are required and nothing will be submitted unless there is a value on each control.
The problem is that when you click the submit button, all controls for both submit buttons require that each be filled.
Any ideas how to fix this?
I tried adding updatePanel for each but that didn't help.
I tried without updatePanel, same behavior.
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel runat="Server" ID="UpdatePanel1" UpdateMode="Conditional">
<ContentTemplate>
<span style="color:#ff0000;width:350px;">* denotes Required </span>
<fieldset style="width:350px;">
<div class="fiel ...
Go to the complete details ...