Ajax Dot Net
I've moved the project to Google Code, all future releases will be posted there. http://code.google.com/p/ajaxdotnet/
.Provides a function which allows GET and POST requests to ASP.NET Ajax enabled PageMethods and Web Services. The function only supports JSON requests and requires JSON2.js from json.org
.ajaxDotNet supports global and per call event handlers. Global event handlers fire regardless of the individual call. Per call event handlers can be set on the actual call or through the defaults function. event handlers set on the call override handlers set through the defaults function.
Usage Example:
$.ajaxDotNet.globals({
processData: function(r) {
//Do Stuff
return r;
}
});
$.ajaxDotNet.defaults({
error: function(r) {
//Do Error
}
});
$.ajaxDotNet('WebService.asmx/Method', {
verb: 'POST',
data: {id: 1},
success: function(obj) {
//Do Success
}
});Script includes intellisense support and examples for ASP.NET 2.0 and 3.5.
Releases
| Official releases | Date | Size | Links | Status | |
|---|---|---|---|---|---|
| 3.0.0 | 2008-Oct-18 | 92.69 KB | Recommended for 1.2.x | ||
| 2.1.0-Release | 2008-Oct-18 | 93.1 KB | Supported for 1.2.x | ||
