I am creating a table using the information pulled from a database. When I am creating the table, I am also creating a cell that has a text box in it - which the user will put information into. Below is the code I used to create the table. My question is: I need to save the information the user enters in the text boxes into the database. I just don't know how to access that info. I did try using a session variable to hold an array, but it didn't update the database. Any hints would be greatly appreciated.<br><br>Thanks<br><br><br>For lQuestionNumber = 0 To 11<br> If sQuestion(lQuestionNumber) <> "XXX" Then<br>%><br> <table width="1006"><br> <TR><TD width="33"> </TD><br> <TD width="31"><% = sQuestion(lQuestionNumber)%> </TD><br> <TD width="33"></TD><br> <b><TD width="24"><input type = "text" name="Answer" width=3 size="2"></b><br> <TD width="241"></TD><br> <TD width="29"><% =Index %></TD><br> <TD width="265"><% =sAnswers(lQuestionNumber)%></TD><br> <TD width="29"><% =Index + 12 %></TD><br> <TD width="265"><% =sAnswers(lQuestionNumber + 12) %></TD><br><%<br> Index = Index + 1<br> End If<br>Next<br><br>