:::::::::::::: ASP에서 글 내용 한줄씩 프린트 하기 :::::::::::::::::::::
<%Dim arr_Con Content = Replace(strContent, chr(13)&chr(10), chr(13)&chr(10) & "|") arr_Con = Split(Content,"|")
For i = 0 to Ubound(arr_Con) Response.Write arr_Con(i) Response.Write i&"줄" Next %> |