C # Five ways to call foreground JavaScript in the background-practical tips

Source: Internet
Author: User
Looking for it on the Internet, there are three ways to access the foreground code:

First, OnClientClick (VS2003 does not support this method)

<asp:button id= "Button1" runat= "Server" text= "button" onclientclick= "Client_click ()" onclick= "Button1_Click"/ >

Client_click () is a way of JavaScript.

The second type, BUTTON1.ATTRIBUTES.ADD ("onclick", "Return Client_click ()");

"Client_click ()" is a foreground method, can replace the general script such as: Retrun confirm (' OK delete? ')

The third is the one I think is the most flexible, clientscript.registerstartupscript

Example: StringBuilder sb = new StringBuilder ();

Sb. Append ("<script language= ' JavaScript ' >");

Sb. Append ("Button2_onclick ('" + Serverpath + ")");

Sb. Append ("</script>");

Clientscript.registerstartupscript (this. GetType (), "Loadpicscript", sb. ToString ());

The fourth kind. Writing scripts with the Response.Write method

For example, after you click the button, the first operation of the database, after the display has been completed, you can finally want to call the place to write

Response.Write ("<script type= ' Text/javascript ' >alert ();</script>");

A flaw in this approach is that you cannot call custom functions in script files, only internal functions, and specific calls to custom functions can only be written in Response.Write, such as Response.Write ("<script type=" text/ JavaScript ' >function myfun () {...} </script> ");

Fifth type dynamically add scripts with ClientScript class

Use the following: To add code where you want to invoke a JavaScript script function, be aware that Myfun has already been defined in the script file.

Clientscript.registerstartupscript (Clientscript.gettype (), "MyScript", "<script>myfun ();</script>");

This method is more convenient than Response.Write, and you can call the custom function in the script file directly.

Can be executed anywhere in the program, O (∩_∩) o ..., is it good?

Note The order of execution: Execute the client first, then execute the server

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.