asp怎么让下拉列表框选中,急急
<selectname="cp_lb1"id="cp_lb1"><optionvalue="">--请选择--</option><%exec="selectid,cp_n...
<select name="cp_lb1" id="cp_lb1">
<option value="" >--请选择--</option>
<%
exec="select id,cp_name from ht_chp"
rs3.open exec,conn,1,1
do while not rs3.eof
%>
<%
response.Write(rs3("cp_name"))
response.Write(rs("xmName"))
If rs3("cp_name")=rs("xmName") Then
%>
<option value="<%=rs3("cp_name")%>" selected><%=rs3("cp_name")%></option>
<%
else
%>
<option value="<%=rs3("cp_name")%>" ><%=rs3("cp_name")%></option>
<%
end if
%>
<%
rs3.movenext
loop
rs3.close
set rs3=nothing
%>
</select>哪地方不对啊 展开
<option value="" >--请选择--</option>
<%
exec="select id,cp_name from ht_chp"
rs3.open exec,conn,1,1
do while not rs3.eof
%>
<%
response.Write(rs3("cp_name"))
response.Write(rs("xmName"))
If rs3("cp_name")=rs("xmName") Then
%>
<option value="<%=rs3("cp_name")%>" selected><%=rs3("cp_name")%></option>
<%
else
%>
<option value="<%=rs3("cp_name")%>" ><%=rs3("cp_name")%></option>
<%
end if
%>
<%
rs3.movenext
loop
rs3.close
set rs3=nothing
%>
</select>哪地方不对啊 展开
展开全部
试试这个代码:
<select name="cp_lb1" id="cp_lb1">
<option value="" >--请选择--</option>
<%
exec="select id,cp_name from ht_chp"
rs3.open exec,conn,1,1
do while not rs3.eof
%>
<option value="<%=rs3("cp_name")%>" <%If rs3("cp_name")=rs("xmName") Then%>selected="selected"<%end if%>><%=rs3("cp_name")%></option>
<%
rs3.movenext
loop
rs3.close
set rs3=nothing
%>
</select>
<select name="cp_lb1" id="cp_lb1">
<option value="" >--请选择--</option>
<%
exec="select id,cp_name from ht_chp"
rs3.open exec,conn,1,1
do while not rs3.eof
%>
<option value="<%=rs3("cp_name")%>" <%If rs3("cp_name")=rs("xmName") Then%>selected="selected"<%end if%>><%=rs3("cp_name")%></option>
<%
rs3.movenext
loop
rs3.close
set rs3=nothing
%>
</select>
更多追问追答
追问
set rs3=conn.execute("select * from xmzs where id=(select top 1 id from xmzs where zslb="&lb&" and xmName="&xmnames&" order by id asc) order by id asc")
这样写为什么不对?报至少一个参数没有被指定值。
追答
建议使用response.write()来输出sql查询语句,response.end()设置断点。代码如下:
set rs3=server.createobject("adodb.recordset")
sql="select * from xmzs where id=(select top 1 id from xmzs where zslb="&lb&" and xmName="&xmnames&" order by id asc) order by id asc"
response.write(sql)
response.end()
rs3.open sql,conn,1,1
这样就可以查看sql语句中少了哪个参数,并做相应的改进。
还有,可以将输出的sql语句直接放到SQLServer里查询,如果可行,那么说明是asp程序有问题了。
展开全部
看起来代码似乎没有问题,如果像你这样还没有被选中的话不妨把类型统一后再比较
If rs3("cp_name")=rs("xmName") Then
改为
If cstr(rs3("cp_name"))=cstr(rs("xmName")) Then '前提条件是rs3("cp_name")和rs("xmName")不能为空
If rs3("cp_name")=rs("xmName") Then
改为
If cstr(rs3("cp_name"))=cstr(rs("xmName")) Then '前提条件是rs3("cp_name")和rs("xmName")不能为空
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-05-06
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function gotourl(){
var url=document.getElementById("gotourl").value;
if(url!=""){
location.href=url;
}
}
</script>
</head>
<body>
<select name="gotourl" id="gotourl" onchange="gotourl();">
<option value="" selected="selected">请选择</option>
<option value="">百度</option>
<option value="">谷歌</option>
</select>
</body>
</html>
另外,虚机团上产品团购,超级便宜
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function gotourl(){
var url=document.getElementById("gotourl").value;
if(url!=""){
location.href=url;
}
}
</script>
</head>
<body>
<select name="gotourl" id="gotourl" onchange="gotourl();">
<option value="" selected="selected">请选择</option>
<option value="">百度</option>
<option value="">谷歌</option>
</select>
</body>
</html>
另外,虚机团上产品团购,超级便宜
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这中情况一般是 rs3("cp_name")=rs("xmName") 不成立;可是应该你写出来的时候都是一样的应该把他们的类型装换成一致的试试。应该是可以的
追问
set rs3=conn.execute("select * from xmzs where id=(select top 1 id from xmzs where zslb="&lb&" and xmName="&xmnames&" order by id asc) order by id asc")
这样写为什么不对?报至少一个参数没有被指定值。
追答
用
response.write(sql)
response.end()
打出来试试,把那句话复制到数据库中试试,应该能找出问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询