1
A
答えて
11
Request.Formのすべての項目をループします。
- 編集:
ので、同様:
foreach(string key in Request.Form){
Response.Write(key + "=" + Request.Form[key]);
}