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

  • Home
  • SEARCH
  • 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 271823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:13:26+00:00 2026-05-12T00:13:26+00:00

I’m using the ajax toolkit’s ValidatorCalloutExtender to display error messages on a textbox. The

  • 0

I’m using the ajax toolkit’s ValidatorCalloutExtender to display error messages on a textbox. The ValidatorCalloutExtender is extending on a RegularExpressionValidator that is validating the textbox. The problem I am having is that I need to dynamically change the ValidationExpression and ErrorMessage depending on what dropdownlist item has been selected that is associated to the textbox. I was able to successfully do this using client side events and javascript but then I can’t seem to get the ValidatorCalloutExtender to update the ErrorMessage that is displayed properly. The thing that confuses me more is this works fine in Firefox but I can’t seem to get it to work in any version of IE. If anyone can help me find a way to get my error message that is displayed to change dynamically it would be greatly appreciated.

  • 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-12T00:13:26+00:00Added an answer on May 12, 2026 at 12:13 am

    Ok everyone,

    I figured out my own issue and thought I might put my findings out here if others are trying to do something similar to me.

    In javascript I’m passing the object of the regularexpressionvalidator tied to a textbox, into a function that will change the regular expression and error message depending on a value in a drop down list. If a user changed the dropdownlist value I wanted the validator and ajax validatorcallout to update immediately and either tell the user that the value in the textbox was now valid or it was invalid but because of this new reason. I’m not saying this is the best way to do this but this is the way that works for me and I wanted to do it on the client.

    below is the code that i’m using and (val) is the regularexpressionvalidator object that is passed in.

    function setSearchRegEx(val)
    {
        var regExpression = "";
        var valMessage = "Must be in the following format: ";
        var message = "";
    
        // set regex information depending on what drop down value they select.
        switch (document.getElementByID('ddlValue1.ClientID').value) {
            case "Value1":
                regExpression = "^[a-zA-Z0-9'*\s-]{1,75}$";
                message = valMessage + "[A-Z][0-9]'. #-";
                break;
            case "Value2":
                regExpression = "^\[0-9]{3}-\[0-9]{2}-\[0-9]{4}|\d{9}$";
                message = valMessage + "999-99-9999";
                break;
            case "Value3":
                regExpression = "[a-zA-Z0-9'*\s-]{1,50}$";
                message = valMessage + "[A-Z][0-9]'. #-";
                break;
            case "Valu4":
                regExpression = "^\[0-9]{3}-\[0-9]{3}-\[0-9]{4}$";
                message = valMessage + "999-999-9999";
                break;
            case "Value5":
                regExpression = "^[0-9]{1,10}$";
                message = valMessage + "9999999999";
                break;
            default:
                regExpression = "";
                message = "";
        }
        // set validation control values for the new drop down selected.
        val.validationexpression = regExpression;
        val.errormessage = message;
        val.title = message;
    
        // fire the validation function to validate what is currently in the textbox
        val.isvalid = val.evaluationfunction(val);
        //call the function to manipulate the UI
        validatorUpdateDisplay(val);
    }
    
    function validatorUpdateDisplay(val)
    {
        if (val.isvalid) {
    
            //make the error invisible
            val.display = "none";
        }
        else {
    
            var browser = navigator.appName;
    
            //different browsers get updated differently, IE really the only main one to update differently.
            if (browser == "Microsoft Internet Explorer") {
                val.ValidatorCalloutBehavior._errorMessageCell.innerText = val.errormessage;
            }
            else {
                val.ValidatorCalloutBehavior._errorMessageCell.textContent = val.errormessage;
            }
    
            //make the error visible
            val.display = "inline";
        }          
    }
    

    As you can see Internet Explorer didn’t work the same way as the rest of the browsers I tested against did! If someone has a better way of doing this please share, and I hope this answer helps some people out!

    Thanks

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

Sidebar

Ask A Question

Stats

  • Questions 204k
  • Answers 204k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Okay, I put together a solution that is able to… May 12, 2026 at 8:43 pm
  • Editorial Team
    Editorial Team added an answer Are you sure your query is returning results? It seems… May 12, 2026 at 8:43 pm
  • Editorial Team
    Editorial Team added an answer Variadic macros are a feature of C99. #define F(Y,...) dash((int[]){__VA_ARGS__},Y)… May 12, 2026 at 8:43 pm

Related Questions

In order to apply a triggered animation to all ToolTip s in my app,
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.