Form

POSTメソッドで送信されたデータの取得


文法
Request.Form(Key)(Index)


パラメータ
Key : 要素名
index : インデックス


機能説明
POSTメソッドで送信したデータの取得


使用例
==== FormTest.html ======== <html><body> <form method="POST" action="GetUserID.asp"> <center>ユーザID <input type="text" name="UserID"></center> <input type="submit" value="送信"> </form> </body></html> ===== GetUserID.asp ======= <% Response.Write "ユーザID : " & Request.Form("UserID") %>
Topへ