Search All Articles Submit your Website or Blog to A New Internet Library
Monday, March 2, 2009
Calling Page Methods and Web Services directly using jQuery.
For calling Ajax Page Methods from Javascript using jQuery use the below jQuery method to set type, url, input data empty braces if no input data is available to avoid errors. Data transfer will done in JSON format.
$.ajax({
type: "POST",
url: "PageName.aspx/WebMethodName",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
// Your logic here
}
});
To consume Webservice in Javascript using jQuery is similar to above where we will pass the data as JSON format string.
$.ajax({
type: "POST",
url: "ServiceName.asmx/WebMethodName",
data: "{'name':'anil','gender':'male','age':'23'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
// Your logic here
}
});
Subscribe to:
Post Comments (Atom)
Also Read other Top Articles
- JSON Serialization in VS 2008
- Implementing Forms Authentication in Silverlight Application.
- Making GridView Rows or Individual Cells Clickable and Selectable.
- Enabling browser back button for GridView Paging and Sorting in Ajax 1.1 and 3.5 (using Visual Studio 2005/ Visual studio 2008)
- How to pass values from User Control to Page or calling Page methods from User Control.
- What is WCF?
- New features in C# 4.0
- C# to VB.NET and VB.NET to C# online free converter tools.


No comments:
Post a Comment
Post your comments/questions/feedback for this Article.