I have passed values from one form to another. I have placed the data in hidden text boxes on the new form. How do I grab the text from the hidden form fields to a table on the page? I have tried document.write and GetElementById. thanks!
To write the content to a table's <td> you will have to first give that td an id like <td id="tdid"></td> Code (markup): Then you will have to get that element using the getElementById and use innerHTml for writing to the td object.