フォーム文字列を全て表示する

サンプルソース

<%
For Each name In Request.Form
    Response.Write name & " = " & Request.Form(name) & "<br>"
Next
%>

解説

Request.Formでフォーム文字列を取得します。




基本操作



ASPサンプル集

ファイル操作

ディクショナリ操作
<<すべてのサンプルをみる>>

ASPリファレンス

組み込みオブジェクト


Copyright (C) ASP@Workshop All rights reserved.