What is the best way to send values from JavaScript (client-side) to the server (asp.net) without refreshing the page?
I want to insert the data into a database but I don't want to refresh the page or change any data on it.
|
What is the best way to send values from JavaScript (client-side) to the server (asp.net) without refreshing the page? I want to insert the data into a database but I don't want to refresh the page or change any data on it. |
||||
|
Ypu have to use Ajax techniques, JQuery, Asp.net, YUI, and the rest of api and libraries that let you use Ajax techniques. The easiest one in Asp.net is using builtin Asp.net Ajax functionalities by adding a ScriptManager and UpdatePanel to your page |
|||
|
|
|
Simple way : 1- Import jquery into your page
3- in your aspx page create your function
4- Call this function on the button click for more questions or descriptions of my code and script i'm here :) |
||||
|
|
|
An easy way is to use a page method or static methods on a page and use jquery to send or get data from the server side code. This link has a good walkthrough http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/ |
|||
|
|
|
The technique is called Ajax and there are no shortage of tutorials and libraries (not to mention support in the big libraries such as YUI or jQuery). |
|||
|
|
asp.net ajax tutorial. – nfechner Oct 9 '11 at 6:55