Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Accept text input into a table

Status
Not open for further replies.

basst

Technical User
Mar 23, 2005
173
0
0
GB
I'm looking to accept text input directly into a table cell or textbox on a web page.

The text needs to be saved in the table on the web page so that returning users see the new text and can change it.

Anyone have any code or ideas how to do this?

Thanks in advance

 
put an input box into the cell. This is how I would do it in HTML. No idea how it is done with the clicky stuff in frontpage. It will probably put a form around the input which you have to remove.
Code:
<table>
<tr><td><input name="tester"></td></tr>
</table>
You can then set the initial value of the input box when the page is next displayed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top