Hi !

I have a S**T load of forms to do and i would like to use a generic send.asp to send the result in a email!

So, with ASP, i want to spit out an email that will look similar to my form !!

But, if i do this

VB Code:
  1. For Each Item In Request.Form
  2.     Response.Write Request.Form(Item) & "<BR>"
  3. Next

it works, but it does'nt come in the order of my form, but i can use Item to know the name of the field !

To have it in order, i have t do :

VB Code:
  1. For x=1 To Request.Form.Count
  2.     Response.Write Request.Form(x) & "<BR>"
  3. Next

This one comes in order, but i can't find out the name of my field, is there a way to know the name of the field ?

Thanks and i hope i explained it ok ?