Thanks planoie,
I get lazy while editing HTML knowing that it ignores tabs, spaces, linefeeds ect. However in this case I'm setting a value and I overlooked that fact. You nailed it, my code was:
<textarea name="txtNotes" cols="35" id="txtNotes">
<%
If NOT blnNew Then
Response.Write(objRS("txtNotes"))
End If
%>
</textarea>
I changed to:
<textarea name="txtNotes" cols="35" id="txtNotes"><%
If NOT blnNew Then
Response.Write(objRS("txtNotes"))
End If%></textarea>
and now life is good. Thanks much.
|