jQuery.ajax() calls asp.net background method

高洛峰
Release: 2016-12-16 16:13:39
Original
1599 people have browsed it

Using JQuery’s $.ajax() can easily call asp.net’s background methods.

Let’s warm up with a simple example first.

1. Method call without parameters

C# background code:

using System.Web.Services; [WebMethod] public static string sayHi() { return "Hi,Welcome to China!"; }
Copy after login

Note: 1. The method must be a static method and must have the declaration of [WebMethod].

html code:


Copy after login

jQuery code:

Copy after login

Running results:

jQuery.ajax() calls asp.net background method

jQuery.ajax() calls asp.net background method

You can clearly see the data format returned by json through firebug, so you need data.d when fetching data.

2. Method call with parameters

C# background code:

[WebMethod] public static string sayHi(string address, string name) { return "Hi," + address + " " + name; }
Copy after login

html code:

address: family name:
Copy after login

jQuery code:

Copy after login

Running results

jQuery.ajax() calls asp.net background method

jQuery.ajax() calls asp.net background method

3. Calling the method that returns the List collection


C# background code:

[WebMethod] public static List sayHi(string address, string name) { List list = new List(); for (int i = 0; i < 10; i++) { list.Add("Hi:" + i.ToString()); } list.Add("Hi:" + address + " " + name); return list; }
Copy after login

html code:

address: family name:
Copy after login
Copy after login

jQuery code:

Copy after login

Run result:

jQuery.ajax() calls asp.net background method

jQuery.ajax() calls asp.net background method

4. Return SortedList method call


C# background code:

[WebMethod] public static SortedList sayHi(string address, string name) { SortedList sl = new SortedList(); for (int i = 0; i < 10; i++) { sl.Add(i.ToString() + "_key", i.ToString() + "_value"); } sl.Add("_key", "_value " + address + " " + name); return sl; }
Copy after login

html code:

address: family name:
Copy after login
Copy after login

jQuery code:

Copy after login

Running result:

jQuery.ajax() calls asp.net background method

jQuery.ajax() calls asp.net background method

5. Operation xml

Xml file code:

   ASP.NET 3.5高级程序设计(第2版) 麦克唐纳博思工作室 2034000 76   ASP.NET 3.5入门经典 (荷兰)史潘加斯(Spaanjaars,I.) 1046000 78.5   C#高级编程(第5版)上下卷 (美)内格尔(Nagel.C) 等著 24770000 124   ASP.NET AJAX实战 (美)麦克卢尔,(美)格拉维奇,(美)欧尔 等著 511000 44   ASP.NET程序开发范例宝典(C#)(第2版) 张跃延,苏宇,贯伟红 1419000 71.2  
Copy after login

html code:

address: family name:
Copy after login

jQuery Code:

Copy after login

Running results:

jQuery.ajax() calls asp.net background method

jQuery.ajax() calls asp.net background method


For more articles related to jQuery.ajax() calling asp.net background methods, please pay attention to PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!