Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:04:56+00:00 2026-06-15T08:04:56+00:00

I have a login and registration form, when I load my registration form, my

  • 0

I have a login and registration form, when I load my registration form, my last login username and password is pre-populated in 2 of my fields which is non-related. I tried clearing my browser cache, history, changing the IDs of my fields but it doesn’t help. It’s pre-populating in my Zipcode and Password field. If I remove any of these 2 fields, other fields becomes victim. Anyone knows what is the problem? It only happens in Chrome. Thanks.

<fieldset id="inputs">
                        <asp:TextBox ID="username" CssClass="username" placeholder="Username" required runat="server" />
                        <asp:RequiredFieldValidator ID="UsernameRequired" runat="server" ControlToValidate="username" 
                                                    CssClass="failureNotification" Display="Dynamic" ErrorMessage="UserName is required." ToolTip="UserName is required." 
                                                    ValidationGroup="RegisterUserValidationGroup"  >*</asp:RequiredFieldValidator>
                        <asp:TextBox ID="email" CssClass="email" placeholder="Email" required runat="server" />    
                        <asp:RequiredFieldValidator ID="EmailRequired" runat="server" ControlToValidate="email" 
                                                    CssClass="failureNotification" Display="Dynamic" ErrorMessage="Email is required." ToolTip="Email is required." 
                                                    ValidationGroup="RegisterUserValidationGroup"  >*</asp:RequiredFieldValidator>
                        <asp:RegularExpressionValidator CssClass="failureNotification"
                                                        ID="EmailExpression" runat="server" ErrorMessage="Invalid Email Format." 
                                                        ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" ControlToValidate="email" Display="Dynamic" ToolTip="Email format is invalid."
                                                        ValidationGroup="RegisterUserValidationGroup">!</asp:RegularExpressionValidator> 
                        <asp:TextBox ID="Zipcode" CssClass="Zipcode" placeholder="Zip / Postal Code" required runat="server" />  
                        <asp:RequiredFieldValidator ID="ZipcodeRequired" runat="server" ControlToValidate="Zipcode" 
                                                    CssClass="failureNotification" Display="Dynamic" ErrorMessage="Postal Code is required." ToolTip="Postal Code is required." 
                                                    ValidationGroup="RegisterUserValidationGroup"  >*</asp:RequiredFieldValidator>  
                        <asp:CustomValidator ID="ctvLastVisitDuration" runat="server" ClientValidationFunction="calculateCoordinates"
                                             ControlToValidate="Zipcode" ErrorMessage="Unable to locate address!"
                                             Display="Dynamic" 
                                             ValidationGroup="RegisterUserValidationGroup"></asp:CustomValidator>

                        <asp:TextBox ID="password" CssClass="password" TextMode="Password" placeholder="Password" required
                                     AssociatedControlID="Password" runat="server" />
                        <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password" 
                                                    SetFocusOnError="true" CssClass="failureNotification" Display="Dynamic" 
                                                    ValidationGroup="RegisterUserValidationGroup" ToolTip="Password is required.">*</asp:RequiredFieldValidator>
                        <asp:TextBox ID="ConfirmPassword" CssClass="password" TextMode="Password" placeholder="Comfirm Password" required
                                     AssociatedControlID="Password"  runat="server" />
                        <asp:RequiredFieldValidator ControlToValidate="ConfirmPassword" CssClass="failureNotification" Display="Dynamic" 
                                                    ErrorMessage="Confirm Password is required." ID="ConfirmPasswordRequired" runat="server" 
                                                    ToolTip="Confirm Password is required."
                                                    ValidationGroup="RegisterUserValidationGroup">*</asp:RequiredFieldValidator>
                        <asp:CompareValidator ID="PasswordCompare" runat="server" ControlToCompare="Password" ControlToValidate="ConfirmPassword" 
                                              CssClass="failureNotification" Display="Dynamic" ErrorMessage="The Password and Confirmation Password must match."
                                              ValidationGroup="RegisterUserValidationGroup" >!</asp:CompareValidator>
                    </fieldset>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:04:57+00:00Added an answer on June 15, 2026 at 8:04 am

    The TextBox has AutoCompleteType=”None” property, but I always use javascript:

    function removeAutoComplete(){
       $('input:[type="text"]').each(function(){this.autocomplete='off';});   
    }
    
    Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(removeAutoComplete);
    

    or

    $(document).ready(function(){removeAutoComplete();});
    

    You can find your textboxes on page with jquery by id or class too.

    $('input:[type="text"]:[id="inputId"]')  
    $('input:[type="text"]:[class="inputClass"]')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one registration form, I don't want people to register login username with
Hi i have developed a login form (username,password and submit button) using a MySQL
I have a registration form in which i have a field login name. I
on my web site I want to have login/registration form in modal window done
I have created Login forms and registration forms for a website. The form is
Normally we have login page with username, password filed and signin button. Using the
i have two tables which form part of my login/register system: these are userlogin
I have a simple Login form and Registration form, currently they rotate at the
I am modifying my login/registration form via login.phtml and have a problem with the
My task is create both login and registration form on one view! I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.