本文目录一览

1,二级联动无刷新数据库

靠!看不懂

二级联动无刷新数据库

2,ASP二级联动菜单 数据库

这里有一个联动菜单参考一下
那可以给人民币啊

ASP二级联动菜单 数据库

3,求ASP二级联动菜单数据库版的

<table align="center" cellpadding="4" cellspacing="1" class="toptable grid" border="1"> <form name="form3"> <tr> <td align="right" height="30">所属大类:</td> <td class="category"> <% sql="select * from bigclass order by id" set rs_bigclass=conn.execute(sql) if rs_bigclass.eof then %> <script language="javascript"> alert("请先添加物料大类!") window.location.href="../system/bigclass_add.asp" </script> <% response.end end if nowbigclass=request("bigclass") if nowbigclass="" then nowbigclass=rs_bigclass("id") end if %> <select name="bigclass" onChange="form3.submit()"> <% do while rs_bigclass.eof=false %> <option value="<%=rs_bigclass("id")%>"<%if trim(cstr(rs_bigclass("id")))=nowbigclass then%> selected="selected"<%end if%>><%=rs_bigclass("bigclass")%></option> <% rs_bigclass.movenext loop %> </select> </td> </tr> </form> <form name="form2"> <input type="hidden" name="bigclass" value="<%=nowbigclass%>"> <tr> <td align="right" height="30">所属小类:</td> <td class="category"> <% sql="select * from smallclass where id_bigclass="&nowbigclass&" order by id" set rs_smallclass=conn.execute(sql) %> <select name="smallclass"> <option value="0"></option> <% do while rs_smallclass.eof=false %> <option value="<%=rs_smallclass("id")%>"<%if trim(cstr(rs_smallclass("id")))=nowsmallclass then%> selected="selected"<%end if%>><%=rs_smallclass("smallclass")%></option> <% rs_smallclass.movenext loop %> </select> </td> </tr></table>

求ASP二级联动菜单数据库版的


文章TAG:二级  联动  筛选  数据  二级联动筛选数据库有哪些  
下一篇