How do you know what size to make you text boxes? I have a field in my database that can be up to 32 characters? Should I make my text box size="32"? And doesn't Netscape handle these text box sizes differently than IE?
korkus2000
1:42 pm on Mar 23, 2002 (gmt 0)
Use javascript or server-side scripting to make sure that you get only 32 characters. Weird things happen and you don't want to throw a DB exception.
txbakers
2:45 pm on Mar 23, 2002 (gmt 0)
<input type="text" size="32" maxsize="32">
bmcgee
5:44 pm on Mar 23, 2002 (gmt 0)
maxsize? or maxlength? I've always used maxlength...is maxsize more compliant and should that be what is used?