<html> <table> <tr><td> <INPUT type=text name=txtComments01t id=txtComments01t value="he didn't know what ""the customer"" was or wasn't thinking!" size=99 MAXLENGTH=200></INPUT> </td></tr> </table> </html>
The code above does not work. It ends the display after the word what. Is there some sort of escape code to use to display a double quote (as in chr(34)) in HTML?
Are you sure the table code is correct? I've always known it to be like this:
<table height="xxx" width="xxx"> <tr> <td>xxxxxxxxxxx</td> </tr> </table>
I think you have to specify the height and width???
value="he didn't know what [B][FONT="Courier New"]&[/FONT]#34;[/B]the customer[B][FONT="Courier New"]&[/FONT]#34;[/B] was or wasn't thinking!"
you can also write " as " in HTML, ex:
value="he didn't know what "the customer" was or wasn't thinking!"
Excellent answers. I must have known that once way back but forgot. Thanks!