帶復(fù)選框的表單
代碼:
<!DOCTYPE html><html>
<body>
<%
fruits=Request.Form("fruits")
%>
<form action="demo_checkboxes.asp" method="post">
<p>Which of these fruits do you prefer:</p>
<input type="checkbox" name="fruits" value="Apples"
<%if instr(fruits,"Apple") then Response.Write("checked")%>>
Apple
<br>
<input type="checkbox" name="fruits" value="Oranges"
<%if instr(fruits,"Oranges") then Response.Write("checked")%>>
Orange
<br>
<input type="checkbox" name="fruits" value="Bananas"
<%if instr(fruits,"Banana") then Response.Write("checked")%>>
Banana
<br>
<input type="submit" value="Submit">
</form>
<%
if fruits<>"" then%>
<p>You like: <%Response.Write(fruits)%></p>
<%end if
%>
</body>
</html>
結(jié)果:
相關(guān)文章
- ASP中的面向?qū)ο箢?/a>
- EasyASP v1.5發(fā)布(包含數(shù)據(jù)庫操作類,原clsDbCtrl.asp)第1/2頁
- 用ASP編寫的加密和解密類
- 推薦下天楓常用ASP函數(shù)封裝,推薦大家使用
- ASP里面令人震撼地Debug類(VBScript)
- asp的通用數(shù)據(jù)分頁類
- ASP類的寫法
- cls_main.asp第1/3頁
- 文章內(nèi)頁類
- [ASP]精華代碼
- asp緩存類
- 查詢翻頁優(yōu)化第1/2頁
- ASP程序代碼執(zhí)行時間統(tǒng)計類
- 檢測函數(shù) asp class
- ASP中一個字符串處理類
- 葉子asp分頁類
- Object對象的一些的隱藏函數(shù)介紹
- ASP中一個用VBScript寫的隨機數(shù)類
- 淺談ASP中的類
- 一個asp快速字符串連接類