ASP如何设计动态表单
发布网友
发布时间:2022-04-12 11:08
我来回答
共3个回答
热心网友
时间:2022-04-12 12:37
<select name="select" onChange="var jmpURL=this.options[this.selectedIndex].value ; if(jmpURL!='') {window.location=jmpURL;} else {this.selectedIndex=0 ;}" >
<option >选择总分类</option>
<%Set Rs=server.createobject("adodb.recordset")
Rs.Open "select * from DF_Sort order by ID Asc",adocon,1,1
do while not Rs.eof %>
<option value="Sort2.asp?ID=<%=Rs("ID")%>&SortName=<%=Rs("SortName")%>&lmname_a=类别管理&lmname_b=二级类别"<%if Rs("ID")=cint(request.QueryString("id")) then%> selected <%end if%>><%=trim(Rs("SortName"))%></option>
<%Rs.movenext
loop
Rs.close
set Rs=nothing%>
</select>
热心网友
时间:2022-04-12 13:55
asp实现不了,得用JAVASCRIPT,希望你看动网论坛的注册那块.
热心网友
时间:2022-04-12 15:30
?