Line breaks in ASP

doucchakab

New Member
How do I get a line break to appear on my ASP page when I enter it in an MS Access field and output the database? Most sites i've checked say that you can enter a control break in your database field by pressing CTRL + ENTER, so I did this, but when I output the database to my ASP page, it doesnt go to the next line. Can anyone help?The way I do it is as follows.<BR><BR>If you are displaying to straight HTML then do something like this.<BR><BR>response.write(replace("my field",vbcrlf,"<BR>"))<BR><BR>And that should work :)response.write(replace("my field",vbcrlf,"<BR>"))ACK It's interpreting it wrong<BR><BR>response.write(replace("my field",vbcrlf,"[BR]"))<BR><BR>except use HTML BR Tag instead of the brackets that I have to use on this board.... ugh
 
Back
Top