Hi,
Thanks for your reply.
I have gone through the given link but i am still having problems. I am using textboxes on the content page.
In firefox, when i type username, it shows username in the list but when i select it,it doesn't give password.
In IE, username list is not shown at all.
Here is the code;
<asp:Content ContentPlaceHolderID="head" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:Panel ID="pnlLogin" runat="server" DefaultButton="btnLogin">
<div style="width:400px; margin:0 auto; color: #FFFFFF" id="ccc">
<div class="easyui-panel" title="Login" style="width:400px;padding:30px 70px 20px 70px; margin-bottom:20px;">
<div style="margin-bottom:10px">
<asp:TextBox ID="txtEmail" Width="160" runat="server" class="easyui-textbox" style="width:100%;height:40px;padding:12px;" data-options="prompt:'Username',iconCls:'icon-man',iconWidth:38"></asp:TextBox>
<asp:Label ID="lblEmail" CssClass="red-text" runat="server"> </asp:Label>
</div>
<div style="margin-bottom:20px">
<asp:TextBox ID="txtPassword" Width="160" TextMode="Password" runat="server" class="easyui-textbox" style="width:100%;height:40px;padding:12px" data-options="prompt:'Password',iconCls:'icon-lock',iconWidth:38"></asp:TextBox>
<asp:Label ID="lblPassword" CssClass="red-text" runat="server"> </asp:Label>
</div>
<div>
<asp:LinkButton ID="btnLogin" runat="server" class="easyui-linkbutton" data-options="iconCls:'icon-ok'" style="padding:5px 0px;width:100%;">Login</asp:LinkButton>
</div>
</div>
</div>
</asp:Panel>
</asp:Content>