JS call C # backend function to get background parameters (HTML get C # parameter)

Source: Internet
Author: User
Tags call back

C # has its own background control, which is simple and convenient to interact with the background, but sometimes it has to use HTML controls and how to interact with the background is a problem. For example, HTML gets background parameters and uploads to PHP for database operations. The following is a brief introduction to the JS call back function to get to the foreground parameters

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

1   Public string getparameter () 2     {3         string" This is the parameter to be passed to the foreground "; 4         return parameter; 5     }

Default.aspx part of the code:

Note that this part of the code is written in the ASPX page and cannot be placed in a separate JS file because the ' <%=getparameter ()%> ' method needs to be recognized in ASPX.

    <script type="text/javascript"        Function Change () {                 
var'<%=getparameter ()%>'; alert (f); } window.onload = Change ; </script>

Operation Result:

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.