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:
For Each Item In Request.Form Response.Write Request.Form(Item) & "<BR>" 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:
For x=1 To Request.Form.Count Response.Write Request.Form(x) & "<BR>" 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 ?
