vb array w/html form

Tech-Archive recommends: Fix windows errors by optimizing your registry



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?
.



Relevant Pages

  • Re: Detecting a running process.
    ... Private Declare Function EnumProcessModules Lib "psapi.dll" _ ... (ByVal dwProcessID As Long, _ ... Dim nProcesses As Long ... 'fill an array of longs with the ...
    (microsoft.public.vb.winapi)
  • Re: Updated datestamp doesnt work
    ... Public Sub StoreMyOldVals ... ' store values of current row in array ... Dim dbs As DAO.Database, rst As DAO.Recordset ... Dim var As Variant ...
    (microsoft.public.access.gettingstarted)
  • Re: Updated datestamp doesnt work
    ... Public Sub StoreMyOldVals ... ' store values of current row in array ... Dim dbs As DAO.Database, rst As DAO.Recordset ... Dim var As Variant ...
    (microsoft.public.access.gettingstarted)
  • Re: Updated datestamp doesnt work
    ... Public Sub StoreMyOldVals ... ' store values of current row in array ... Dim dbs As DAO.Database, rst As DAO.Recordset ... Dim var As Variant ...
    (microsoft.public.access.gettingstarted)
  • Re: Max/Min Functions
    ... You said the Array function won't work here. ... Dim myArray() As Variant ... > Dim vMax As Variant ...
    (microsoft.public.word.vba.general)