07-12
20

关于ASP中使用session

每次提交后将取得的用户选择的值保存在SESSION中:
Session("Nclassid") = Trim(Request.Form("Nclassid"))

下拉列表改成下面这样:
<select name="Nclassid" onChange="changelocation2(document.yuziform.Nclassid.options[document.yuziform.Nclassid.selectedIndex].value)">
<%
if isNull(Session("Nclassid")) or isEmpty(Session("Nclassid")) then Session("Nclassid") = ""
rs.open "select * from Tbl_Products_nclass " ,conn,1,1

dim selNclassId,strSelected
If not(rs.eof and rs.bof) then
Do while not rs.eof
if CStr(rs("NclassID")) = CStr(Session("NClassID")) then
strSelected = "Selected"
else
strSelected = ""
end if
Response.Write("<option value='"&rs("NClassID")&"' "&strSelected&">"&rs("NClass")&"</option>")
rs.MoveNext
Loop

End If

rs.close
set rs = nothing
%>
</select>


文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: session 下拉列表
相关日志:
评论: 0 | 引用: 0 | 查看次数: 703
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭