提交按钮点击时促发js方法如下
function demo()
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("Post", "ShowFieldList.aspx ",false);
xmlhttp.setRequestHeader( "content-type ","application/x-www-form-urlencoded "); var strUrlpara="NewFieldArray=" +55 +“cellName="+66
xmlhttp.send(strUrlpara);
}
根据传过来的参数查询数据,绑定GridView。GridView在后台绑定了但是,为何ShowFieldList页面没有刷新,显示还是以前的内容
这个方法前端异步方式,你还需要把xmlhttp.responseText的返回内容重新绑定到页面上。
在readystatechange方法里要写xmlhttp.responseText返回的内容