当前位置: 首页 > 图文教程 > 网络编程 > ASP > ASP动态级联菜单实现代码

ASP
ASP系列讲座(十)ASP 内建对象
ASP系列讲座(十一)ActiveX 组件
ASP系列讲座(十二)向浏览器发送内容
ASP系列讲座(十三)向浏览器传送脚本
ASP系列讲座(十四)包含文件
ASP系列讲座(十五)使用 HTML 表格
ASP系列讲座(十六)访问数据库
ASP系列讲座(十七)调试 ASP 脚本
ASP系列讲座(十八)管理应用程序
ASP系列讲座(十九)管理会话
ASP系列讲座(二十)维护 ASP 应用程序的安全
ASP系列讲座(二十一)创建事务性脚本
ASP系列讲座(二十二)使用国际站点
ASP系列讲座(二十三)编写跨平台应用程序
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (一)
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (二)
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (三)
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (四)
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (五)
利 用 ISAPI 实 现 向 数 据 库 中 添 加 记 录 (六)

ASP动态级联菜单实现代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 264 ::
收藏到网摘: n/a

asp级联菜单效果代码 <!--打开两个表-->
<%
set rs1=server.CreateObject("adodb.recordset")
sql1="select * from type1"
rs1.open sql1,conn,1,3
set rs2=server.CreateObject("adodb.recordset")
sql2="select * from type2"
rs2.open sql2,conn,1,3
%>
<form name="form1">
<!--建立菜单一-->
<select name="type" size="1" onChange="redirect(this.options.value)">
<option value=0>请选择……</option>
<%while not rs1.eof%>
<option value="<%=rs1("news_type_1_id")%>"><%=rs1("news_type_1_type")%></option>
<%rs1.movenext
wend%>
</select>
<!--建立菜单二-->
<select name="type2" size="1">
<option value=0>请选择</option>
</select>
</div>
</form>
<!--下面为具体实现的script语句-->
<script>
<!--
var temp=document.form1.type2
function redirect(x){
var i
i=0
for (var m=temp.options.length-1;m>0;m--)
temp.options[m]=null
<%while not rs2.eof
%>
cnt=<%=rs2("news_type_1_id")%>
if(cnt==x) {
temp.options=new Option("<%=rs2("news_type_2_type")%>","<%=rs2("news_type_2_id")%>")
i=i+1}
<%
rs2.movenext
wend%>
}
//-->
</script>