Celsius to Fahrenheit Conversion and vice versa
Highlights of this little Page
- A form that maintains state across server calls - Minimal Impact of page refresh on the user
- A form that's submitted by a javascript callback - not the usual "submit" button
- Use of "hidden" form fields
- This is as close as you can get to Ajaxifying your app without the XHR Javascript object...err no...you could put the text-boxes in separate inline frames and that would be more "Ajaxifying" than this :(
- Thanks for visiting this page - Manjunath Bhat
- Coming soon....the same page with true Ajax behaviour
- You actually dont need to make a server call to do the conversion, but
heck Its good enough for a script that was meant to be my "Hello World"!