JS calls C # background functions to obtain background parameters (html obtains C # parameters)

Source: Internet
Author: User

C # It is easy and convenient to interact with the background by having its own background controls. However, sometimes html controls have to be used. how to interact with the background is a problem. For example, html obtains background parameters and uploads them to PHP for database operations. The following is a brief introduction to JS calling background functions to obtain parameters to be uploaded to the foreground.

 

C # background code (Default. aspx. cs ):

1 public string getParameter () 2 {3 string parameter = "this is the parameter to be passed to the foreground"; 4 return parameter; 5}

 

Part of Default. aspx code:

Note that this part of code should be written in the aspx page and cannot be placed in a separate JS file, because the '<% = getParameter () %>' method must be recognized in aspx.

<Script type = "text/javascript"> function change (){
Var f = '<% = getParameter () %>'; alert (f);} window. onload = change; </script>

Running result:
 

 

Related Article

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.