In order to enable AJAX Functionality , which control is placed on the page..?
+1
A:
If you're talking about ASP.NET, you'll need the ScriptManager and the UpdatePanel.
Justin Niessner
2009-06-29 12:46:42
+1
A:
For AJAX functionality the page (i.e. it's Javascript) uses the XMLHttpRequest
object.
Josef
2009-06-29 12:56:51
Probably not the answer you're looking for but since you haven't asked for a specific server side technology...
Josef
2009-06-29 12:56:56
A:
The main AJAX control that you have to add to your web pages in order to enable ASP.NET AJAX functionality is the ScriptManager control.
If you have master pages you may also use ScriptManagerProxy control.
After adding ScriptManager on to a page, you can add other ASP.NET AJAX controls on the page.
On the other side, if you are just looking for generix AJAX style functionality, you have the JavaScript XMLHttpRequest object.
Ciprian Bortos
2009-06-29 12:58:49