|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。access|菜单|联动菜单|数据|数据库|源代码在网上常常看到关于联动菜单的贴子,特将本人的代码贴出来,供年夜学介入.
一.数据库:
表1:Region(ID,Province)
表2:City(ID,City,Province)
二.代码完成:
<!--#includefile="Conn.asp"-->
<%
functionDbCombox()
dimrs,sql,msg
sql="select*fromRegion"
setrs=conn.execute(sql)
whilenotrs.eof
msg=msg&"<optionvalue="""&rs("Province")&""">"&rs("Province")&"</option>"
rs.movenext
wend
rs.close
setrs=nothing
DbCombox=msg
Endfunction
%>
<html>
<head>
<metahttp-equiv="Content-Language"content="zh-cn">
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title>会员登录</title>
</head>
<body>
<scriptlanguage="javascript">
Citys=newArray();
<%
dimrs,sql,i
sql="select*fromCity"
setrs=Conn.execute(sql)
i=0
whilenotrs.eof
%>
Citys[<%=i%>]=newArray("<%=rs("Province")%>","<%=rs("City")%>");
<%
i=i+1
rs.movenext
wend
rs.close
setrs=nothing
%>
functionchangeselect(selvalue){
varselvalue=selvalue;
vari;
document.form1.City.length=0;
document.form1.City.options[document.form1.City.length]=newOption("请选择","");
for(i=0;i<Citys.length;i++){
if(Citys[i][0]==selvalue){
document.form1.City.options[document.form1.City.length]=newOption(Citys[i][1],Citys[i][1]);
}
}
}
document.form1.City.options[document.form1.City.length]=newOption("请选择","");
</script>
<divalign="center">
<formmethod="POST"action="forum.asp"name="form1">
<tableborder="0"cellpadding="0"style="border-collapse:collapse"width="100%"id="table1"height="59">
<tr>
<tdwidth="67"height="30"bgcolor="#D4D0C8"><b><fontsize="2">区域</font></b></td>
<tdheight="30"bgcolor="#D4D0C8"><selectsize="1"name="Region"onchange="changeselect(document.form1.Region.options[document.form1.Region.selectedIndex].value)">
<%=DbCombox()%></select></td>
</tr>
<tr>
<tdwidth="67"height="30"><b><fontsize="2">乡村</font></b></td>
<tdheight="30"><selectsize="1"name="City"></select></td>
</tr>
</table>
</form>
</div>
</body>
</html>
</p>ASP是依赖组件的,能访问数据库的组件好多就有好多种,再有就是你微软的工具可是什么都要收钱的啊! |
|