View Full Version : Ajax with C#?
summa
08-02-2006, 11:26 AM
Hello every one…
I have a question, is it possible to call ASPX function and pass the parameters by AJAX.. or should I have to use NORMAL POST or GET, send the data and receive in ASPX as normal Forum POSTING..?
Thanks in advance..
Summa
mwinter
08-02-2006, 12:27 PM
I have a question, is it possible to call ASPX function and pass the parameters by AJAX..Yes. The browser will make a HTTP request and the ASP application will handle it as usual.
or should I have to use NORMAL POST or GET, send the data and receive in ASPX as normal Forum POSTING..?You should be doing that anyway; AJAX (in all of its forms) is not a core technology and should not be relied upon. Indeed, it's far from rare for it to be unavailable, rendering your site unusable for those affected.
If the feature you would implement with AJAX is considered important, then there should be a server-side fallback. If not - the feature is helpful or perhaps simply fun, but not critical - then you can choose to forego such support.
Mike
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.