views:

561

answers:

3
+1  Q: 

Ajax on Mono

Do you guys know about an ajax toolkit (or something similar to the m$-ajaxtoolkit) for mono??

+2  A: 

I'd recommend rolling your own using jQuery. That's what m$ is doing now anyway.

Brian
+3  A: 

Microsoft's ASP.NET AJAX Control Toolkit works on Mono, and is open source (Ms-PL). That doesn't preclude the use of jQuery, though. There are actually several third party AJAX libraries and control toolkits that support Mono, and many are compatible or work in conjunction with ASP.NET AJAX.

Joseph Hill
+1  A: 

I agree with Brian, but want to add that you should read Dave Ward's series on jQuery and ASP.net. He really distills the essence of what you can do with jQuery, PageMethods, and WebForms without MS Ajax. These ideas are directly applicable to the Mono / Linux environment.

Here's a list of essential posts:

Using jQuery to directly call ASP.Net Ajax PageMethods

Use FireBug To Learn jQuery

Simplify calling ASP.NET Services with jQuery

David Robbins
Excellent!!! Thank you very much David.
alucardni