asp结合javascript,xml,sqlserver制作的无刷新二级select

王朝asp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

源代码:<%@ LANGUAGE="vbscript" %>

<%

strPathInfo = Request.ServerVariables("PATH_INFO")

strPathInfo = "http://" & Request.ServerVariables("SERVER_NAME") & Left(strPathInfo,InstrRev(strPathInfo,"/"))

Set Conn = Server.CreateObject("ADODB.Connection")

Conn.Provider = "sqloledb"

Conn.Open "Data Source=192.168.1.114;Initial Catalog=pubs;", "sa", "hans"

Set RS = Conn.Execute("SELECT DISTINCT sheng FROM test")

arrPr = RS.GetRows()

RS.Close

Set RS = Nothing

Conn.Close

Set Conn = Nothing

%>

<HTML>

<HEAD>

<META http-equiv="Content-Type" content="text/html; charset=gb_2312-80">

<TITLE></TITLE>

<SCRIPT language=javascript>

<!--

function ChooseCity()

{

//Clear City List

for(var i=form1.SelCity.options.length-1;i>=0;--i)

{

form1.SelCity.options.remove(i)

}

var sState = form1.SelState.options(form1.SelState.selectedIndex).value;

var oXMLDoc = new ActiveXObject('MSXML');

sURL = '<%=strPathInfo%>XMLCity.asp?State=' + sState;

oXMLDoc.url = sURL;

var oRoot=oXMLDoc.root;

if(oRoot.children != null)

{

for(var i=0;i<oRoot.children.length;++i)

{

oItem = oRoot.children.item(i);

sName = oItem.text;

var oOption = document.createElement('OPTION');

oOption.text = sName;

oOption.value = sName;

form1.SelCity.options.add(oOption);

}

}

}

-->

</SCRIPT>

</HEAD>

<BODY>

<FORM action="" method="post" id="form1" name="form1">

<SELECT name="SelState" id="SelState" onchange="ChooseCity()">

<%For i = LBound(arrPr,2) To UBound(arrPr,2)%>

<OPTION value="<%=arrPr(0,i)%>"><%=arrPr(0,i)%></OPTION>

<%Next%>

</SELECT>

<SELECT name="SelCity" id="SelCity">

</SELECT>

</FORM>

</BODY>

</HTML>

第二个页面,用来生成xml文件

<%@ LANGUAGE="VBSCRIPT" %>

<%

sState = Request.QueryString("State")

Set Conn = Server.CreateObject("ADODB.Connection")

Conn.Provider = "sqloledb"

Conn.Open "Data Source=192.168.1.114;Initial Catalog=pubs;", "sa", "hans"

Set RS = Conn.Execute("SELECT city FROM test WHERE sheng='" & sState & "'")

arrCity = Rs.GetRows()

%>

<?xml version="1.0" encoding="gb2312"?>

<citys>

<%For i = LBound(arrCity,2) To UBound(arrCity,2)%>

<city><%=arrCity(0,i)%></city>

<%Next%>

</citys>

使用时注意修改数据库相关信息

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航