ASP中一個(gè)頁面多個(gè)表單的提交
發(fā)表時(shí)間:2024-06-06 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]做網(wǎng)頁有時(shí)我們需要將多個(gè)表單方在同一個(gè)頁面 處理表單的程序頁怎樣才知道那個(gè)表單被提交了并作相應(yīng)的處理呢? 下面是一個(gè)例子: '''''''''''''''''...
做網(wǎng)頁有時(shí)我們需要將多個(gè)表單方在同一個(gè)頁面
處理表單的程序頁怎樣才知道那個(gè)表單被提交了并作相應(yīng)的處理呢?
下面是一個(gè)例子:
'''''''''''''''''''''form.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<script language="vbscript" runat="server">
sub chuli()
if request.QueryString("formid")=1 then
response.Write(request.Form("textfield"))
elseif request.QueryString("formid")=2 then
response.Write(request.Form("textfield2"))
end if
end sub
</script>
<html><head><title>一個(gè)頁面多個(gè)表單的提交</title></head>
<body>
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td><form name="form1" method="post" action="form.asp?formid=1">
<input type="text" name="textfield">
<input type="submit" name="Submit" value="提交">
</form></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><form name="form2" method="post" action="form1.asp?formid=2">
<input type="text" name="textfield2">
<input type="submit" name="Submit2" value="提交">
</form></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<%
chuli '調(diào)用服務(wù)器端過程
%>
</td>
</tr>
</table>
</body>
</html>