I'm trying to write an ASP page which get's most of the info out of the a mdb. However, the text field size limit is only 255, which does not make sense at all. Is there a workaround for this problem?
Printable View
I'm trying to write an ASP page which get's most of the info out of the a mdb. However, the text field size limit is only 255, which does not make sense at all. Is there a workaround for this problem?
use a textarea instead of a text input field;
<textarea cols="" rows="" name=""></textarea>
that should contain your text!
good luck
Ines