|
There seems to be a good deal of confusion when it comes to using line
breaks in ASP. This article tries to clarify the line-breaks problem.
HTML is CRLF insensitive
As a rule, line break is connoted with the CR-LF sequence--Carriage Return
and Line Feed. However, web browsers simply ignore (in most cases) CRLF.
Therefore, if you want to achieve a line break, you have to use the <br> tag.
Line breaks in the ASP code won't be visible in the resulting HTML page
If you execute the following code:
|