This has sat in the ASP forum for a couple of days but I haven't had any response... can someone help..
I'm reasonably new to ASP so forgive me if this is all old hat.
I have a FORM on a HTML page, method=POST.
I also have an ASP page that's entire purpose is to e-mail the contents of the form to a nominated person. To save on typing my ASP page contains this code to build the body of the e-mail
Code:for each fItem in Request.Form
tmpbody=tmpbody+fitem+" : "
tmpbody=tmpbody+Request.Form(fItem)
tmpbody=tmpbody+vbcrlf
next
It then sends it using the CDONTS.NewMail object.
This all works fine except for the fact that the form entries appear to be in a random order in the e-mail - is there a way I can control the order of the form elements without having to do a separate Request.Form("this item") for each form element?
I've tried the TabIndex property of each <INPUT item on the form but it doesn't seem to make a difference..
or am I going about the whole thing the wrong way..?
