62,243
社区成员




var xmlHttp;
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
xmlHttp=false;
}
}
if (!xmlHttp && typeof XMLHttpRequest != 'undefined')
{
xmlHttp = new XMLHttpRequest();
}
function _chkcode()
{
var validate=document.getElementById("validate");
var url="common.aspx?code="+escape(validate.value);
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange=backcode;
xmlHttp.send(null);
}
function backcode()
{
if (xmlHttp.readyState<4)
{
document.getElementById("list").innerHTML="数据加载中......";
}
if (xmlHttp.readyState==4)
{
document.getElementById("list").innerHTML="显示列表";
}
}
<asp:UpdatePanel ID="upl" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:UpdateProgress ID="UpdateProgress1" runat="server">
<ProgressTemplate>
<div class="wopen2">
<div align="center" class="login font_04">数据加载中,请等待……</div>
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</asp:UpdatePanel>