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 3964606
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:21:16+00:00 2026-05-20T03:21:16+00:00

I have a registration form with several validator controls. I am checingk the username

  • 0

I have a registration form with several validator controls. I am checingk the username availability via
AJAX (using jQuery, NOT an UpdatePanel). If the username is taken, I would like to make the page invalid like the other ASP.NET validators do from my JavaScript function. Is this possible? Examples?

Here is my current functionality:

// In head...
<script type="text/javascript">
$(document).ready(function () {
    $('#<%= username.ClientID %>').blur(function () {

        $.ajax({
            type: 'POST',
            contentType: 'application/json; charset=utf-8',
            url: 'MyService.asmx/CheckAvailability',
            dataType: 'json',
            data: '{ "username": "' + username + '" }',
            success: function (response) {

                // stuff

                // If username is taken, invalidate

            }, error: function () { /* stuff */ }
        });
    });
});
</script>

// The markup...
<dl><dt>Username</dt>
<dd>
    <asp:textbox id="username" runat="server" />
    <asp:requiredfieldvalidator id="usernameRequiredValidator" runat="server"
        controltovalidate="username"
        errormessage="Required"
        display="Dynamic" />
    <span id="avail_response"></span>

<!-- More stuff... -->
  • 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-05-20T03:21:17+00:00Added an answer on May 20, 2026 at 3:21 am

    This link provides an in-depth explanation of ASP.Net validation. Scroll down to the paragraph ‘The Client-Side API’ where it explains that you can set the Page_IsValid variable. Be warned however, there is no guarantee that this API will stay the same in future versions of .NET so check for the existence of Page_IsValid.

    EDIT :

    Sorry, in my previous comment I was in a bit off a hurry and I just answered your question without looking at the bigger picture. I just reread your question and indeed, it will do nothing because when you the user clicks the submit button, it triggers a revalidation of all validators. Because the textbox username has a value, your requiredvalidator is valid and the form submits.

    I think that a better solution in the long run (and one that doesn’t directly call javascript functions of .NET) is the following :

    1. Add a hidden field
    2. Create a requiredfieldvalidator for that hidden
      field
    3. Place the requiredfieldvalidator behind the first requiredvalidator and give it the same errormessage as that requiredvalidator
    4. Place some value in the hidden field in
      your success function if the
      username is available, in all other
      cases, make the hidden field empty.

    It’s a bit of a detour but it’s future proof & easier than figuring out how to do it with the javascript functions of the .NET validator framework.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a simple registration form for our website users where we only require
I have a product registration form that allows the user to add additional product
I have a table of vehicles with registration numbers, and want to select a
I would like to have the authentication and registration parts of my website encrypted
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I
Have you ever seen any of there error messages? -- SQL Server 2000 Could
Have you guys had any experiences (positive or negative) by placing your source code/solution
Have you used VS.NET Architect Edition's Application and System diagrams to start designing a
Have you determined a maximum number of characters allowed in FCKEditor ? I seem

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.