Hey Guys,
In my project there is one login.aspx page having asp:Panel control with DefaultButton; this features work in production environment but not in local machine.
I have checked it is working in Firefox perfectly but not in IE9/10.
See the below code snippet to better understand.
<asp:Panel ID="pnlProducers" runat="server" DefaultButton="btnProducerLogin">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="accordion-forms">
<tr>
<td colspan="2">
*Producer User ID<br />
<span class="smalltext">(Main account holders are Admins. Sub users, please enter the
user name your Admin assigned to you.)</span><br />
<asp:TextBox ID="txtProducerUserId" runat="server" MaxLength="50" CssClass="text-box"
EnableTheming="false"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvProducerUserId" runat="server" ControlToValidate="txtProducerUserId"
Font-Size="10px" ErrorMessage="Required" Display="Static" CssClass="message"
ValidationGroup="Producer"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td colspan="2">
*Password<br />
<asp:TextBox ID="txtProducerPwd" runat="server" TextMode="Password" MaxLength="10"
CssClass="text-box" EnableTheming="false"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvProducerPwd" runat="server" ControlToValidate="txtProducerPwd"
ErrorMessage="Required" Display="Static" CssClass="message" Font-Size="10px"
ValidationGroup="Producer"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td width="31%" style="padding-bottom: 5px;">
<asp:Button ID="btnProducerLogin" ValidationGroup="Producer" runat="server" Text="Login"
OnClick="btnProducerLogin_Click" />
</td>
</tr>
</table>
</asp:Panel>
Please suggest, if anyone face this kind of issue.
Lakhan Singh
Tech Lead
BeyondKey System Pvt. Ltd.
Indore, M.P.
India