简单问题,已经是第二贴了!
以下的程序,select值提交到本页,为何没有取到值?
<select name="select" onchange="list(this.value)">>
<option></option>
<% if not(rss.eof and rss.bof) then
rss.movefirst
while not rss.eof %>
<option><%=rss("d_dwmc")%></option>
<% rss.movenext
wend
end if %>
</select>
dim lj
i=request.querystring("xxx").count
response.write i
if i<>o then
lj=request.querystring
response.write lj
sql = "select d_dwbm,d_dwmc,d_sslj,d_sbqj_nf,d_sbqj_yf,d_sbsj_rq,d_sbwj,d_sfyd,d_sbwjm,d_id from bbsb_bbxx where d_sfsc='0' and d_sfyd='0' and d_dwbm like '%'+'00000' and d_sslj='"&lj&"'"
rs.Open sql, conn, adOpenStatic
else
lj=request.querystring
response.write lj
sql = "select d_dwbm,d_dwmc,d_sslj,d_sbqj_nf,d_sbqj_yf,d_sbsj_rq,d_sbwj,d_sfyd,d_sbwjm,d_id from bbsb_bbxx where d_sfsc='0' and d_sfyd='0' and d_dwbm like '%'+'00000'"
rs.Open sql, conn, adOpenStatic
end if