[thelist] CSS layout changes

Casey Crookston caseyc at IntelliSoftmn.com
Tue Jul 18 12:45:40 CDT 2006


Thanks John,

This gave me a good start.  Here's the code I'm now using:

        Dim loop1 As Integer
        Dim arr1() As String
        Dim coll As NameValueCollection

        ' Load Form variables into NameValueCollection variable.
        coll = Request.Form

        ' Get names of all forms into a string array.
        arr1 = coll.AllKeys
        For loop1 = 0 To arr1.GetUpperBound(0)
            lbl_submit.Text &= arr1(loop1) & "<br>"
        Next loop1

Which returns the id's of each item in the form.  Now I need to play
around and figure out how to return the values...

Casey






More information about the thelist mailing list