5_6.asp

来自「《asp网页设计》作者沈才梁源代码,共十章」· ASP 代码 · 共 26 行

ASP
26
字号
<html><head><title>5_6.asp:下拉菜单和列表框</title></head>
<body>
<%Sex=Request("Sex")  		'接收“性别”下拉菜单的选项指定值
  Hobby=Request("Hobby") 	'接收“爱好”列表框的选项指定值
%>
<h2>5_6.asp:下拉菜单和列表框</h2>
<form method="POST" name="Form1">
  性别:  
  <select size="1" name="Sex">
    <option  Value="">-</option>
    <option <%If Sex="男" then response.write "Selected" End if%>>男</option>
    <option <%If Sex="女" then response.write "Selected" End if%>>女</option>
  </select><br>
  爱好:<br>
  <select size="4" name="Hobby" multiple >
    <option value="体育" <%If Instr(Hobby,"体育")>0 then response.write "Selected" End if%>>体育</option>
    <option value="看书" <%If Instr(Hobby,"看书")>0 then response.write "Selected" End if%>>看书</option>
    <option value="看电影" <%If Instr(Hobby,"看电影")>0  then response.write "Selected" End If%>>看电影</option>
    <option value="旅游" <%If Instr(Hobby,"旅游")>0 then response.write "Selected" End if%>>旅游</option>
  </select><br>     
  <input type="submit" name="B1" value="提交">                 
  </form>
<p>性别:<%=Sex%></p>
<p>爱好:<%=Hobby%></p>
</body>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?