[求助]我想达到的效果,不知是否属于联动
我想实现这样的功能,选择下拉菜单的某项,在另一个输入框里显示该项对应的其它内容,我用循环将所有记录读出来的,以下是代码:<label>
<select name="gsname" class="inputtext1" >
<option value="" selected="selected">--请选择--</option>
<option value="通讯薄">通讯薄</option>
<%dim uid
strsql="select * from KHZL order by gsname DESC"
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open strsql, conn, 1, 1
%>
<%while not rs.eof%>
<option value="gsname"><%=rs("gsname")%></option>
<%if not rs.eof then
rs.movenext
end if
wend
rs.close
set rs = nothing
%>
</select>
</label>
现在我已经把 KHZL 表里的 gsname 字段的内容读出来了,这个表里还有 gstel 等字段,我想如何 能在选择gsname字段的某一条记录时,在另一输入框显示该条记录对应的 gstel字段 中的内容,感谢大家,祝大家元旦快乐!