ASP 下拉菜单

yclhunter 2005-02-20 04:40:26
当选择下拉菜单某个值,点击“sumbit”按钮提交本页面,在下拉框里显示刚选的值而不是默认的值,如何实现?
...全文
497 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
pjl20005 2005-02-20
  • 打赏
  • 举报
回复
list1=array("登录","修正","删除")
select1=request("select1")
response.write "<select name='select1'>"
for i=0 to ubound(list1)
if select1=list1(i) then
response.write "<option value='"&list1(i)&"'selected>→"&list1(i)&"</option>"
else
response.write "<option value='"&list1(i)&"'>"&list1(i)&"</option>"
end if
next
response.write "</select>"
yclhunter 2005-02-20
  • 打赏
  • 举报
回复
写的详细点,没看明白
ye 2005-02-20
  • 打赏
  • 举报
回复
哈,我也刚解决了这个问题

<option value="列表值" <%if 取得的值=列表值 then response.write " selected"%列表值</option>
yclhunter 2005-02-20
  • 打赏
  • 举报
回复
是这样:<select name="select1" > onChange="funChange_click()">
<option value="登録" selected>登録</option>
<option value="修正" >修正</option>
<option value="削除" >削除</option>
</select>
登陆页面时。框里显示“登録”。我如果选择消除,然后用了type=submit的按纽。此时叶面刷新后,框里仍是“登録”。而我想显示“削除”。
jumpnew929 2005-02-20
  • 打赏
  • 举报
回复

<form name=cform method=post action=111.htm>
<input type=text value=333><br>
<select>
<option>
<option onclick=document.cform.submit()>submit
<option onclick=document.cform.reset()>reset
</select>
</form>
boyfu 2005-02-20
  • 打赏
  • 举报
回复
还是不明白你问的是什么意思

如果按我的理解,难道你会认为
在<form></form>用了<select></select>的下拉框
然后用了type=subit的按纽
传递过去的不是你刚选择的值
yclhunter 2005-02-20
  • 打赏
  • 举报
回复
没用过asp呀
wsdzmhongm 2005-02-20
  • 打赏
  • 举报
回复
这个问题自己解决不了?

28,408

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧