TheConeHead
Programmer
I am having extra space added to values that I am inserting via asp. I am checking them with hidden inputs right before they are inserted and they look ok but when I see them in the db they have extra space added:
<input type="hidded" value="123">
insert into ... (colName) values ('"&varName&"')
creates:
123(with about 5 spaces after)
thanks
<input type="hidded" value="123">
insert into ... (colName) values ('"&varName&"')
creates:
123(with about 5 spaces after)
thanks