PDA

Click to See Complete Forum and Search --> : ASP Pages


Thamsanqa
Jun 11th, 2001, 04:07 AM
I have got two pages. One I am getting information from the database using a recordset. I display this information on the page in a table. Then I click on the displayed information and I then go to the next page. When the next page loads I want to see the information from the previous page in text boxes. How do I do this? How do I insert this information in text boxes? I have tried to use the JavaScript Document Object Module. It doesn't work because this information must happen on window upload, and my text boxes are in a table. I have read almost everywhere but nobody makes mention of this.:D

Sundance Kid
Jun 11th, 2001, 06:23 AM
The easiest way of doing it.

When You click on a link, send the UniqueIdentifer for that recordset over to the page. (this is the page you want textboxes).

Run the same query, and just display the recordset in textboxes.

I think it is the easiest way of doing it. You can use the
document.innerHTML , but it is going to be a hassile.