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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:52:03+00:00 2026-05-27T05:52:03+00:00

I have some other javascript functions that are being set on the onfocus and

  • 0

I have some other javascript functions that are being set on the onfocus and onblur events of the textbox that I am using. In these functions it calls a generic javascript function that is not related to any controls. I want to know how to just simply spit this function out to the html of the page from the code behind. Something like this…

Page.ClientScript.RegisterStartupScript(this.GetType(), "?????", getCounter);

EDIT: Here is what I mean

public class MVADTextBox : TextBox
        {
 protected override void OnLoad(EventArgs e)
            {
 var getCounter = "<script language=\"javascript\">" +
                                "function GetCounter(input) {" +
                                    //this function gets the number of special characters taht are in a row.
                                    //it is only the grouping of characters that are right after your current position
                                    "var textbox = document.getElementById(input.id);" +
                                    "var mask = textbox.getAttribute('Mask');" +
                                    "var inputCharacters = textbox.getAttribute('InputCharacters');" +
                                    "var tbid = \"#\" + input.id;" +
                                    "var position = $(tbid).caret().start;" +
                                    "var counter = 0;" +
                                    "for (var i = position; i < mask.length; i++) {" +
                                    "     if (mask[i] != '#') {" +
                                    "        counter++;" +
                                    "        if (mask[i + 1] == '#') {" +
                                    "            break;" +
                                    "        }" +
                                    "    }" +
                                    "}" +
                                    "return counter;" +
                               " }" +
                            "</script>";

                            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "OnFocus", onFocus);
                            Page.ClientScript.RegisterStartupScript(this.GetType(), "GetCounter(input)", getCounter);



var onBlur = "<script language=\"javascript\"> function PopulateField(input) {if (input.value == \"\") {input.value = input.defaultValue; input.className = 'sampleText'; } } </script>";


  Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "OnFocus", onFocus);

  Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "OnBlur", onBlur);
    }
}

The on blur method is getting sent to the page.

  • 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-27T05:52:04+00:00Added an answer on May 27, 2026 at 5:52 am

    Answer:

    I believe that Page.ClientScript has been deprecated. You should be using ClientScriptManager.

    Replace your "?????" with the name of the script. Honestly, the name of the script is almost useless (unless you need to check for its existence later on).

    ClientScriptManager.RegisterStartupScript(this.GetType(), "myCount", getCounter);
    

    Usage Clarification:

    //You must surround your code with script tags when not passing the bool param
    ClientScriptManager.RegisterStartupScript(this.GetType(),
                       "myCount",
                       "<script>alert('Hey')</script>");
    
    // The last param tells .Net to surround your
    // code with script tags (true) or not (false)
    ClientScriptManager.RegisterStartupScript(this.GetType(),
                       "myCount",
                       "alert('Hey')", true);
    

    Additional Information:

    Signatures from MSDN:

    public void RegisterStartupScript(
        Type type,
        string key,
        string script
    )
    
    public void RegisterStartupScript(
        Type type,
        string key,
        string script,
        bool addScriptTags
    )
    

    See: http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.registerstartupscript.aspx

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

Sidebar

Related Questions

I have a project that depends upon some other binaries to be downloaded from
I have an app that can open up some other forms at the user's
I have page that has some javascript that needs to run at page load.
I have some JavaScript that is sharing a request between two separate servers on
Greetings! I have some XML like this: <Root> <MainSection> <SomeNode>Some Node Value</SomeNode> <SomeOtherNode>Some Other
I am implementing NHibernate into an existing web application. However, we have some other
I have to run some other application from my program and hide it's form.
I have some BitmapFrames created on a thread other than the main UI thread;
I have some 100 files to be merged from one branch to the other.
I have numerous Corba servers and some other java apps (not web). I wish

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.