up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question
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. – 7wp Aug 31 '09 at 7:20
im using plain ASP.NET – Anonymous Aug 31 '09 at 7:27
feedback

2 Answers

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|improve this answer
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.. – Anonymous Aug 31 '09 at 8:02
anything using rowdatabound??? – Anonymous Aug 31 '09 at 8:04
1  
jquery selector can help you, my suggestion is for you to learn jquery. – Abu Aqil Aug 31 '09 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 – Anonymous Aug 31 '09 at 9:51
feedback

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|improve this answer
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??? – Anonymous Aug 31 '09 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 – 7wp Aug 31 '09 at 18:40
feedback

Your Answer

 
or
required, but never shown