Click here to Skip to main content
Licence CPOL
First Posted 24 Jul 2005
Views 243,901
Downloads 1,376
Bookmarked 63 times

Use & Call RegisterStartUpScript, RegisterClientScript and Client-Side Script

By santosh poojari | 5 Mar 2009
This article helps a learner to know more about the different ways of calling client side JavaScript from server side code-behind.
2 votes, 8.3%
1
2 votes, 8.3%
2
1 vote, 4.2%
3
10 votes, 41.7%
4
9 votes, 37.5%
5
4.00/5 - 24 votes
2 removed
μ 3.81, σa 2.18 [?]

Introduction

One can find this article useful during the development phase of a web application. One requires functionalities such as calling JavaScript client side code for validation, confirming popup, prompting user for unwanted action, etc. at server side code behind.

Implementation

So we start with an example through code.

RegisterStartupScript

Using RegisterStartupScript we can write a JavaScript function in code behind and call it from code-behind or from HTML. Look at the code below for reference.

Calling & Writing JavaScript Function from Server Side Code Behind

private void Page_Load(object sender, System.EventArgs e)
{
    string jScriptValidator;
    jScriptValidator="<script> function ReqFieldValidator()" + 
                " { if (document.forms[0].txtField.value == '') \n"; 
    jScriptValidator+="{ alert('TextBox cannot be empty') \n ";
    jScriptValidator+="return false; \n";
    jScriptValidator+="} \n";
    jScriptValidator+=" return true \n";
    jScriptValidator+=" } </script>";
    Page.RegisterStartupScript("regJSval",jScriptValidator);
    btnSubmit.Attributes.Add("onclick","return ReqFieldValidator()");
}

Writing JavaScript Function in Server Side Code Behind and Calling from HTML

//Server side

private void Page_Load(object sender, System.EventArgs e)
{
    string jScript;
    jScript="<script>function JavScriptFn(){alert" + 
      " ('Client Function in javascript is call')}</script>";
}
//HTML side
< A onclick="JavScriptFn()" >
< asp:Label id="Label1" runat="server" Width="281px" 
   ForeColor="#8080FF">Click to call Javascript function.
</asp:Label> >/A >

Writing JavaScript in HTML and Calling it from Code-behind

    <Head >
        <script>
        
        function ReqField1Validator()
        { 
         if (document.forms[0].txtField1.value == '') 
            {
                alert('TextBox cannot be empty') 
                return false
            } 
                return true 
        } 
                
        </script>
    </Head >
private void Page_Load(object sender, System.EventArgs e)
{
    btnOK.Attributes.Add("onclick","return ReqField1Validator()");
}

RegisterClientScriptBlock

Suppose we want JavaScript code to be executed but not a function. In that case, we make use of RegisterClientScriptBlock.RegisterClientScriptBlock which helps to make server side code as well as client side code inline to each other.

private void btnClientBlock_Click(object sender, System.EventArgs e)
{
    string jScript;
    jScript="<script>alert ('Javascript block of code executed')</script>";
    Page.RegisterClientScriptBlock("keyClientBlock",jScript);
    lblSequencial.Text="Remaining part of the code executed";
}

ASP.NET 2.0 RegisterClientScriptBlock/RegisterStartupScript

One can call JavaScript client side function directly from code behind using RegisterStartupScript. If one wants JavaScript to be embedded into codebehind, then make use of RegisterClientScriptBlock:

    <script>
    function fnShowMessage()
    {
        alert(" Invoke Javascript function from Server Side Code Behind ");
    }
    </script>
protected void Button1_Click(object sender, EventArgs e)
    {
        ClientScript.RegisterStartupScript
		(GetType(),"Javascript", "javascript: fnShowMessage(); ",true);
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        ClientScript.RegisterClientScriptBlock(GetType(), "Javascript", 
		"<script>alert('Record Added Successfully')</script>");
    }

Hope you find the above article helpful. Any suggestions are most welcome.

History

  • 25th July, 2005: Initial post
  • 4th March, 2009: Article updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

santosh poojari

Technical Lead

India India

Member
He is presently working as tech arch in one of the leading IT company.He has total 8 years of experience in C#.net. He is a B.E graduate in Computers from Bombay University.
 
Most of his experiences are in designing architect for end to end solutions. His interest areas are WCF,Spring.net,Architecture- Model View Presenter,UML,Webservice,Performance Engineering/tuning,Design patterns,Generics,Enterprise Library,Regular expressions,Silverlight and WWF.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberanuj17844:23 10 Oct '11  
QuestionRegistring Client Script in ASP.NET Pinmemberawadhendra tiwari3:35 27 Aug '11  
QuestionUse of 'calling' is misleading [modified] PinmemberGebbetje1:42 24 Jun '10  
GeneralMy vote of 1 PinmemberMiguel J15:18 23 Mar '10  
GeneralRe: My vote of 1 Pinmembervalery possoz5:52 4 Jan '12  
Generalvery helpful !! PinmemberLouisa Chen16:10 28 Jun '07  
GeneralRe: very helpful !! Pinmemberfletchsod5:53 13 Oct '08  
GeneralRegistering a ClientScriptBlock from a code module or dll Pinmembertony_trotter12:23 3 Apr '06  
Questioncan i do the inverse Pinmembermarcoscavaleiro12:11 28 Nov '05  
AnswerRe: can i do the inverse Pinmemberazam's22:01 14 Feb '07  
GeneralJavascript files Pinmemberdudamir8:04 25 Jul '05  

First of all, nice article, get to the point without wasting time.
 
Is there any way to use ".js" files along with .aspx?
 
Thank you
 
Eduardo Miranda
GeneralRe: Javascript files Pinmembersantosh poojari20:07 25 Jul '05  
GeneralRe: Javascript files Pinmemberaprenot10:57 27 Jul '05  
GeneralRe: Javascript files Pinmembersantosh poojari20:45 28 Jul '05  
GeneralRe: Javascript files Pinmemberfreesmile5:17 11 Sep '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 5 Mar 2009
Article Copyright 2005 by santosh poojari
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid