You can execute this request through Ajax. Since you are using asp.net, this is a good starting point for some great Ajax JavaScript libraries .
Here's also a simple example of how to make a simple Ajax request.
function sampleAjaxReq(){ var xmlhttp=new XMLHttpRequest(); xmlhttp.open("POST","resource.asp",true); xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xmlhttp.send("pname1=value1Henry&pname2=value2"); }
Jose Diaz
source share