vote up 0 vote down star

im trying to update my database from the checkbox in a grid view. i want to do it using ajax so that the page doesn't have to refresh everytime i click o the checkbox. how am i supposed to do that?

flag
That depends if you want to use ASP.NET AJAX or jQuery library? Also it matters if you are using MVC or plain ASP.NET on the server side. – Roberto Sebestyen Aug 31 at 7:20
im using plain ASP.NET – unknown (yahoo) Aug 31 at 7:27

2 Answers

vote up 0 vote down

use event onChange on your checkbox and make it call your ajax function..

eg with jquery:

<input type=checkbox onchange="javascript: doOnChange();">

<script>
function doOnChange() {

     $.ajax({
         type: "GET",
         url: "/url/to/your/controller.php",
         data: ...,
         dataType: "html",

         success: function(data){
                      ...;
                  },

         error: function(data){

                      ...;
                }
     });
};
</script>
link|flag
the checkbox is bound to a gridview and to update the database i neeo to get the values of the other cells in the row. or the row id.. – unknown (yahoo) Aug 31 at 8:02
anything using rowdatabound??? – unknown (yahoo) Aug 31 at 8:04
1  
jquery selector can help you, my suggestion is for you to learn jquery. – Abu Aqil Aug 31 at 8:20
i tried ur above method but an error throws up saying that the onchange function is not defined or an anonymous funtion – unknown (yahoo) Aug 31 at 9:51
vote up 0 vote down

You can use JavaScript with a little help from jQuery Library to post to an .aspx page. I wrote an example for PHP here http://stackoverflow.com/questions/1353678. The javascript part would stay the same, but on the server side you would have to read the query string to read in the variables using Request.querystring. Also If you want to return JSON data you will have to change the response type to be plain text rather HTML. Like this:

context.Response.ContentType = "text/plain";
link|flag
the checkbox is bound to a gridview and to update the database i neeo to get the values of the other cells in the row. or the row id.. anything using rowdatabound??? – unknown (yahoo) Aug 31 at 8:05
Well you are using automatically created drag and drop controls. Then for that you don't have a whole lot of control of how it functions. So your only choice is to use ASP.NET's built in AJAX framework to "ajaxify" your control. You can Google Asp.NET Ajax gridview and you will find plenty of examples. For example here is one: samples.gaiaware.net/Ajax-GridView.aspx – Roberto Sebestyen Aug 31 at 18:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.