The author in this screencast is using jquery to submit data to a database using php. The link is here:
http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-day-13/
How could I do the same thing using asp.net and sql server 2005?
The author in this screencast is using jquery to submit data to a database using php. The link is here:
http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-day-13/
How could I do the same thing using asp.net and sql server 2005?
What the jQuery AJAX query is doing is quite simple. It's just sending a request to a url. Be it static (http://example.com/ajax.aspx) or relative (ajax.aspx)
You can send POST or GET data with that request and it will function just like if a form sent that information.