Iterating through forms collection in ASP
Classic ASP September 1, 2012 Comments Off on Iterating through forms collection in ASPIterating through forms collection using “for each statement” in ASP.
This is one of my favourite ASP snippet and I use it often
<% for each x in Request.Form Response.Write(x & " = " & Request.Form(x) & "<br/>") next %>