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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:55:52+00:00 2026-05-25T12:55:52+00:00

I wonder if there’s a way to hookup a custom function to asp net

  • 0

I wonder if there’s a way to hookup a custom function to asp net client-side validation event, so every time validation is fired by any control I can make some magic on client-side UI

I’m looking for a general approach to intercept page onvalidating event without setting it on every control that causes a postback

Thank you guys

Edit:

I ended up with this function: (thanks to @Kirk)

$(document).ready(function () {
    $('form').submit(function () {
        if (typeof Page_Validators != 'undefined') {
            var errors = '';
            $.each(Page_Validators, function () {
                if (!this.isvalid) {
                    errors += this.errormessage + '\r\n';
                }
            });
            if (errors.length > 0) {
                Alert(errors);
            }
        }
    });    
}); 
  • 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-25T12:55:52+00:00Added an answer on May 25, 2026 at 12:55 pm

    To do something along the lines of this you can place an OnClientClick event on the submit button or just the general form submission event.

    Then you can use the Client Validation Object Model with the validator controls. This actually allows you to verify each of the validation controls you’ve setup. There are a couple of values you can check against from the client relating to the page, see http://msdn.microsoft.com/en-us/library/yb52a4x0.aspx#ClientSideValidation_ClientValidationObjectModel.

    You reference each control with isvalid property. For example

    <asp:Label id="lblZip" runat="server" Text="Zip Code:" />
    <asp:TextBox id="txtZip" runat="server" /></asp:TextBox>
    <asp:RegularExpressionValidator id="valZip" runat="server"
       ControlToValidate="txtZip"
       ErrorMessage="Invalid Zip Code" 
       ValidationExpression="[0-9]{5}" />
    
    <script language=javascript>
    // Call this function to do something
    function txtZipOnChange() {
       // Do nothing if client validation is not active
       if (typeof(Page_Validators) == "undefined")  return;
           // Change the color of the label
           lblZip.style.color = valZip.isvalid ? "Black" : "Red";
    }
    </script>
    

    You can also get an array of the validators on the page with the client function Page_Validators. There are a few more functions you can use.

    Also you may use the ValidatorValidate(val) client function to force a check of each one indivually as well as ValidatorEnable(val, enable) to enable or disable validators as your logic demands.

    Take a look at http://msdn.microsoft.com/en-us/library/aa479045.aspx#aspplusvalid_clientside for a bit more detail.

    Hopefully this gets you where you need to go. If not, feel free to ask.

    Previous Comment
    You can use an onClientClick and attach a JavaScript function. http://msdn.microsoft.com/en-us/library/7ytf5t7k.aspx

    If you want to use jQuery, you can use ClientIDMode you are able easier to figure out control IDs.

    Take a look at http://weblogs.asp.net/scottgu/archive/2010/03/30/cleaner-html-markup-with-asp-net-4-web-forms-client-ids-vs-2010-and-net-4-0-series.aspx.

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

Sidebar

Related Questions

I wonder if there is a way to create a Custom List in Sharepoint,
I wonder if there's a way to use scheduled tasks with SQL Azure? Every
I just wonder there a way to display the files in document directory with
I wonder if there is a way to either programatically or using a third
I wonder if there's a way to do the following: I have a structure
i wonder if there is a way to access a control's templatepart from within
I wonder if there is a way to set the value of #define in
I wonder if there is a less verbose way to do Input Verification in
i wonder if there is a way to generate valid GUIDs/UUIDs where the first
I wonder if there is a way to use ungreedy matching in JavaScript? I

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.