Accessing Server-Side Data from Client Script: Using WCF Services with jQuery and the ASP.NET Ajax L

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Todays websites commonly exchange information between the browser and the web server using Ajax techniques - the browser executes JavaScript code typically
in response to the page loading or some user action. This JavaScript makes an asynchronous HTTP request to the server. which then processes the request and, perhaps,
returns data that the browser can then seamlessly integrate into the web page. Two earlier articles - http://www.4guysfromrolla.com/articles/102010-1.aspx Accessing
JSON Data From an ASP.NET Page Using jQuery and http://www.4guysfromrolla.com/articles/102710-1.aspx Using Ajax Web Services, Script References, and jQuery ,
looked at using both http://jquery.com/ jQuery and the http://www.asp.net/ajaxlibrary/learn.ashx ASP.NET Ajax Library on the browser to
initiate an Ajax request and both ASP.NET pages and Ajax Web Services as the entities on the web server responsible for servicing such Ajax requests.

This article continues our examination of techniques for implementing lightweight Ajax scenarios in an ASP.NET website. Specifically, it examines how to use
the http://msdn.microsoft.com/en-us/netframework/aa663324.aspx Windows Communication Foundation , or WCF, to server data from the web server
and how to use both the ASP.NET Ajax Library and jQuery to consume such services from the client-side. Read on to learn more!

http://www.4guysfromrolla.com/articles/111710-1.aspx" class="readmore Read More >

View the full article
 
Back
Top