text vs. textarea
When retrieving info for editing, how does a text box differs from a textarea box?
The following code retrieves information just fine, but with single line:
<input name="Keywords" type="text" value="<% = rsVIPP("Keywords") %>" size="50" maxlength="1000">
however the same thing doesn't work with multi line. Why?
<textarea name="Keywords" cols="50" rows="10"><% = rsVIPP("Keywords") %></textarea>
Thanks.
M
|