使用method="post"的表單
代碼:
<!DOCTYPE html><html>
<body>
<form action="demo_simpleform.asp" method="post">
Your name: <input type="text" name="fname" size="20" />
<input type="submit" value="Submit" />
</form>
<%
dim fname
fname=Request.Form("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!<br>")
Response.Write("How are you today?")
End If
%>
</body>
</html>
結果:
相關文章
- ASP.NET Web 表單
- ASP.NET 數據綁定
- ASP.NET 母版頁
- ASP.NET Table 控件
- WebSecurity CurrentUserName 屬性
- WebSecurity IsCurrentUser 方法
- ASP.NET HTML 控件 Image
- ASP.NET HTML 控件 RequiredFieldValidator
- ASP.NET HTML 控件 Page.IsPostBack
- 基本的 HTML 表單
- VB 實例 For Each 循環
- VB 實例 If 條件
- ASP.NET Calendar CaptionAlign 屬性
- ASP.NET Calendar SelectionMode 屬性
- ASP.NET ImageButton PostBackUrl 屬性
- ASP.NET LinkButton Text 屬性
- ASP.NET RadioButtonList CellSpacing 屬性
- ASP.NET Style Width 屬性
- ASP.NET TableRow HorizontalAlign 屬性
- ASP.NET TextBox Wrap 屬性