Iterating 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


 %>