ASP. NET back Call JS method (GO)

Source: Internet
Author: User

1. Using the Response.Write method

The code is as follows:

Response.Write ("<script type= ' Text/javascript ' >alert (" XXX ");</script>");
The flaw in this method is that you cannot invoke a custom function in the script file, only the intrinsic function can be called, and the custom function can only be written on the Response.Write function definition, such as

Response.Write ("<script type= ' Text/javascript ' >function myfun () {}</script>");

2. Using the ClientScript class

The code looks like this: add code where you want to invoke a JavaScript script function, and be sure that myfun is already defined in the script file.

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

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


3. Attributes properties for normal add controls

For the normal button is: Button1.Attributes.Add ("onclick", "myfun ();");

Only valid if added in onload or in the initialization process similar to onload. The script function is executed first, and the execution order cannot be changed.

Note that all of the above methods, the background code can not be converted to the current page of the code, such as redirect, to put the paging code in the script

ASP. NET back Call JS method (GO)

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.