vb array w/html form
- From: vindictive27 <vindictive27@xxxxxxxxx>
- Date: Mon, 17 Dec 2007 10:53:30 -0800 (PST)
I've created an array:
Const cST = 65
Dim arrST()
ReDim arrST(cST)
Dim intST
For intST = 1 to cST
arrST(intST) = Request.Form("st" & intST)
Next
Const cVT = 59
Dim arrVT()
ReDim arrVT(cVT)
Dim intVT
For intVT = 1 to cVT
arrST(intVT) = Request.Form("vt" & intVT)
Next
This array takes the information from two sections of text fields in
an HTML form (st1-65, vt1-59) and stores them in the array.
How would I go about displaying this entire array in an e-mail upon
submission of the form? I have been using ASP to display the rest of
the items, but the array does not appear to be working. Any ideas?
.
- Follow-Ups:
- Re: vb array w/html form
- From: Tom Lavedas
- Re: vb array w/html form
- Prev by Date: Re: Force password reset for administrator
- Next by Date: deleting outlook (2003) distribution lists
- Previous by thread: Re: Force password reset for administrator
- Next by thread: Re: vb array w/html form
- Index(es):
Relevant Pages
|