JS invoke Back-end method (basic use of Ajaxpro.2.dll)

Source: Internet
Author: User

1. In the Web. config file, add the following settings

<add verb= "Post,get" path= "*.ashx" type= "ajaxpro.ajaxhandlerfactory,ajaxpro.2"/>

2. Add a page with a page name of defalut.aspx

Write the following code in the background Defalut.aspx.cs page:

protected void Page_Load (object sender, EventArgs e)
{

AjaxPro.Utility.RegisterTypeForAjax (typeof (Defalut));
}

[Ajaxpro.ajaxmethod]
public string GetResult (string name)
{
if (name== "Zhang San")

return "OK";

Else

return "NO";
}

3. Front-end JS calls the method of the background, the code is as follows:

function GetValue () {

var value=defalut.getresult ("John Doe"). Value;

alert (value);

}

The value obtained is no, because name is John Doe, not Zhang San, according to the background of the judgment, so the value obtained is No.

General This method is so application, we practice it! This is very useful oh!

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.