实例说明:
<!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>
标签含义:
使用 method="post" 的表单,本例演示如何使用 Request.Form 命令与用户进行交互。
源代码运行结果如下:
相关文章
标签:asp