Dear All,
I have a problem with the TabContainer it not see in Mozilla FireFox v16.0.1. Please help me to fix it.
Code:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="ProfileUpdate.aspx.vb" Inherits="WebApplication1.ProfileUpdate" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div style="background-color: #F8F8F8 ;width:800px; height:500">
<p style=" padding-top:5px; background-color: #008B8B; height: 50px; font-size:25px; font-family:Calibri;"> Profile Update : </p>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0" BorderStyle="Solid" BorderWidth="1px">
<asp:TabPanel ID="TabPanel2" runat="server" HeaderText="Account Password">
<ContentTemplate >
<p style="padding: 0px; margin: 0px; font-family: calibri; font-size: x-large; font-weight: normal; font-style: italic; font-variant: small-caps; color: #0000FF;"> Account Password : </p>
<hr style="color: #0000FF" />
<ul style ="list-style:none ;">
<li>
<table>
<tr>
<td>Current Password : </td>
<td><asp:TextBox ID="txtCurrent_PWD" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="currentpwd" ControlToValidate = "txtCurrent_PWD"
ValidationGroup="profileupdate">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>New Password : </td>
<td><asp:TextBox ID="txtNew_PWD" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="newpwd" ControlToValidate = "txtCurrent_PWD"
ValidationGroup="profileupdate" >*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>Retry Password : </td>
<td><asp:TextBox ID="txtRetry_PWD" runat="server" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="retrypwd" ControlToValidate = "txtRetry_PWD"
ValidationGroup="profileupdate" >*</asp:RequiredFieldValidator>
</td>
</tr>
</table>
</li>
</ul>
</ContentTemplate>
</asp:TabPanel>
<asp:TabPanel ID="TabPanel1" runat="server" HeaderText="Account Email">
<ContentTemplate>
<p style="padding: 0px; margin: 0px; font-family: calibri; font-size: x-large; font-weight: normal; font-style: italic; font-variant: small-caps; color: #0000FF;"> Account Email : </p>
<hr style="color: #0000FF" />
<ul style ="list-style:none ; margin-bottom:0">
<li>
<table>
<tr>
<td>Current Email : </td>
<td><asp:TextBox ID="txtCurrent_Email" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="currentemail" ControlToValidate = "txtCurrent_Email"
ValidationGroup="profileupdate" >*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>New Email : </td>
<td><asp:TextBox ID="txtNew_Email" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="newemail" ControlToValidate = "txtNew_Email"
ValidationGroup="profileupdate" >*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>Retry Email : </td>
<td><asp:TextBox ID="txtRetry_Email" runat="server" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator runat="server" id="retryemail" ControlToValidate = "txtRetry_Email"
ValidationGroup="profileupdate" >*</asp:RequiredFieldValidator>
</td>
</tr>
</table>
</li>
</ul>
</ContentTemplate>
</asp:TabPanel>
</asp:TabContainer>
<div style="margin-left:80% ; margin-top:0">
<table>
<tr>
<td> <asp:Button ID="Cancel" runat="server" Text="Cancel" style="margin-left: 0px" Width="61px" /></td>
<td> <asp:Button ID="Apply" runat="server" Text="Apply" Width="61px" /> </td>
</tr>
</table>
</div>
</div>
<asp:Button ID="Button1" runat="server" Text="Button" />
</form>
</body>
</html>
---------------------------------------------------------------------------------------------------------------
thank,
Dorang