asp中回车换行符CHR(10)表示换行,CHR(13)表示回车,CHR(32)表示空格

时间:2021-05-28

先举个例子

<% function th(str) str=replace(str,"妈的","MD") str=replace(str,"靠","KAO") th=str end function function encode(str) str = replace(str, ">", "&gt;") str = replace(str, "<", "&lt;") str = Replace(str, CHR(32), "&nbsp;") str = Replace(str, CHR(13), "") str = Replace(str, CHR(10) & CHR(10), "</P><P>") str = Replace(str, CHR(10), "<BR>") encode=str end function %><%title=request.form("title") content=request.form("content")%>文章标题:<%=th(title)%><hr> 文章内容:<%=encode(th(content))%>

th(str)为自定义函数,主要功能很简单:过滤字符。encode(str)也为自定义函
数,主要功能是完整地显示被传递的信息。
CHR(10)表示换行,CHR(13)表示回车,CHR(32)表示空格。

附加功能:显示UBB代码。
即ubb.asp中含有ubb()函数。

增强的cnbruce.asp

<!--#include file="https://www.jb51.net/ubb.asp"--> <% function th(str) str=replace(str,"妈的","MD") str=replace(str,"靠","KAO") th=str end function %>

以上就是asp中回车换行符CHR(10)表示换行,CHR(13)表示回车,CHR(32)表示空格的详细内容,更多关于asp中回车换行符的资料请关注其它相关文章!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章