Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
AJAX does not directly talk to the database. An AJAX control just uses an HTTP request object to postback to the page on the server (or some other page... it doesn't have to be the control's page). So, the page is the one that handles the processing of the request, not the database directly; you're still in control of what gets returned to the control. So, generally, AJAX is just used to validate data, not to actually bind it back; or AJAX is used for things like populating drop down lists and such. So, for databinding, AJAX controls should work the exact same as a regular control.
|