please clarify some aspects of AJAX with ASP.NET web forms for a beginner

Posted by citrus on Stack Overflow See other posts from Stack Overflow or by citrus
Published on 2010-05-22T07:43:16Z Indexed on 2010/05/22 7:50 UTC
Read the original article Hit count: 418

Filed under:
|

Im familiar with asp.net web forms. I would now like to move on to writing web applications that use AJAX. I would like to get to the stage where I can create an app:

  • that has "edit in place" (no page reload)
  • where i can reorder images using drag and drop (also saves the order to DB)
  • that has google like search suggestions while typing on the fly

1)So do I need to learn how to use AJAX.net and Jquery(my JS library of choice)? Can I make do using only AJAX.net or only Jquery?

2)As far a I know, Jquery will allow me to perform client side manipulations/actions and AJAX.net is the part that will allow me to connect some of my actions to the Server. EG. if I wanted to re-order elements using drag and drop, I would use Jquery, but in order to save the result of the re-order to the DB I would have to use AJAX.net correct?

2a)So In order to learn how to do the above Im thinking I should first learn Jquery so I know how to manipulate/ select elements, and then I can lean how to save these changes to the DB.

3)I searched the books titled "ASP.net AJAX in action" and ASP.net 3.5 AJAX, both of these books did not contain any references to "Jquery". Is this because they may be using a different JS library, or perhaps the book focuses on the AJAX user controls? I just found it confusing that 2 popular AJAX books dont make any reference to Jquery.

Thanks for any help.

© Stack Overflow or respective owner

Related posts about asp.net-ajax

Related posts about jQuery