Can you use jQuery with web forms? Yes, this is not a problem - at the end of the day, all the configuration of web forms generates HTML pages and, therefore, jQuery can manage them.
Can jQuery provide all AJAX controls by default - yes, theoretically, because ultimately everything they do is: a) manipulate the DOM and b) make out-of-band calls to the server. In practice, you will give up any ease of use, and you will have to do more work on your own.
The biggest problem - at least with applications running prior to .NET 4.0 - is that identifiers generated for server controls are interesting. If you can do everything you need in jQuery without reference to the identifier of the control (if you can use classes or look for control types), you go away and run, but if you need to clearly indicate the identifier, you need to emphasize it if you donβt can use .NET 4.0
I have code that mixes the bits of two (dynamic data sites that use the jQueryUI calendar, as it is much better than a toolbox) and, of course, will consider using more jQuery materials in form applications.
Murph
source share