AJAX...
|
This site implements several AJAX controls right? I would like to ask what are the advantages and disadvantages of using AJAX objects? :-)
http://czetsuya-travel.blogspot.com
|
Re: AJAX...
Link |
by
on 2006-08-22 01:17:51
|
I do not actually use XML objects on any parts of this web site. However, the XML HTTP Request Javascript object is handy for querying a server without refreshing the page. The obvious disadvantage is, it requires compatible javascript execution on the client end. This means some cell phones and game stations will not be able to use the features. I try to avoid using ajax for mission-critical features (such as login and download and posting in the forum). |
Re: AJAX...
|
I see. We are currently deciding whether we would apply AJAX on our .NET apps, on the first look I've saw a lot of advantages but as I study the AJAX controls behavior I found many hard to visualize functionalities. I think i will just used it on simple text fields. Thank you :-).
http://czetsuya-travel.blogspot.com
|
Re: AJAX...
Link |
by
on 2006-08-22 02:20:12
|
One other advantage is reduced bandwidth. display information only need be sent once, while small data-grams can be sent on request. |
Re: AJAX...
Link |
by HongyNgyWongy
on 2006-08-25 12:03:06
|
go to this site. It will tell you about AJAX, Pros and Cons http://en.wikipedia.org/wiki/Ajax_(programming) |
Re: AJAX...
|
I like using nifty little bits of javascript/ajax. It impresses the easily amused, which is better than nothing.
10 more years!
|
Re: AJAX...
|
Yes, but while it does it is also a pain to integrate AJAX in a module that dynamically creates a form along with it's action.
http://czetsuya-travel.blogspot.com
|
Re: AJAX...
Link |
by
on 2006-09-05 21:43:01 (edited 2006-09-05 21:43:53)
|
@czetsuya: whaa....? can't you use document.write() ? |
Re: AJAX...
|
ah... i've been creating a dynamic form that uses objects from .net technologies and unfortunately it cannot be document.write(), just can't figure it out 'till now :-(.
http://czetsuya-travel.blogspot.com
|