1.建立一个aspx页面,html代码
http://www.w3.org/1999/xhtml ">
<头runat =“服务器”>
<标题>无标题页面标题>
<脚本类型=“文本/javascript”>
var xmlHttp;
函数 createXMLHttpRequest()
{
if (窗口.ActiveXObject)
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
否则如果 (window.XMLHttpRequest)
{
xmlHttp = 新的 XMLHttpRequest();
}
}
函数startRequest()
{
//调试器;
var ProvinceID=document.getElementById("DropDownList1");
创建XMLHttpRequest();
xmlHttp.onreadystatechange=handleStateChange;
xmlHttp.open("GET", "?ProvinceID="+ProvinceID.value, true);
xmlHttp.send(null);
}
函数handleStateChange()
{
if(xmlHttp.readyState == 4) //0(未初始化);1(正在装载);2 (装载中);3 (交易中);4 (完成)
{
if(xmlHttp.status == 200) //200(确定);404(未找到)
{
document.getElementById("gridiv").innerHTML=xmlHttp.responseText;
}
}
}
脚本>
头>
<正文>