假設表單如下
<form id="form1" name="form1" method="post" action="接收頁面的名稱">
<input name="radiobutton" type="radio" value="1">
第一課
<input name="radiobutton" type="radio" value="3">
第三課
<input type="submit" name="Submit" value="送出" />
</form>
接收頁面可以這樣判斷
<%
radiobutton = request("radiobutton")
if checkradiobutton( radiobutton ) then
%>
審查
<%
else
%>
校登
<%
end if
function checkradiobutton( ByVal radiobutton )
checkradiobutton = false
if radiobutton = "1" then
checkradiobutton = true
end if
end function
%>
很簡單的判斷問題而已
重點只是要釐清概念
如何把重複的程式碼用function寫出來並且給予返回值
[桂正和 在 2008-11-4 06:15 PM 作了最後編輯]