Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Ajax Dot Net


Average rating
(1 vote)

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 releasesDateSizeLinksStatus
3.0.02008-Oct-1892.69 KBRecommended for 1.2.xThis is currently the recommended release for 1.2.x.
2.1.0-Release2008-Oct-1893.1 KBSupported for 1.2.xThis release is supported but is not currently the recommended release for 1.2.x.