欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp中向文本框输出数据原样式的函数

程序员文章站 2023-11-21 17:03:58
从数据库输出信息时有转换函数,可以将回车空格按原样式输出。这段代码可向文本框原样输出代码。复制代码 代码如下:function cc_f_textarea_htm...
从数据库输出信息时有转换函数,可以将回车空格按原样式输出。这段代码可向文本框原样输出代码。
复制代码 代码如下:

function cc_f_textarea_html_encode(cc_f_t_h_e_str) 
if not isnull(cc_f_t_h_e_str) and cc_f_t_h_e_str <> "" then 
cc_f_t_h_e_str = replace(cc_f_t_h_e_str, ">", ">") 
cc_f_t_h_e_str = replace(cc_f_t_h_e_str, "<", "<") 
cc_f_t_h_e_str = replace(cc_f_t_h_e_str, chr(13), "")  
cc_f_t_h_e_str = replace(cc_f_t_h_e_str, chr(10) & chr(10), vbcrlf) 
cc_f_t_h_e_str = replace(cc_f_t_h_e_str, chr(10), vbcrlf) 
cc_f_textarea_html_encode = cc_f_t_h_e_str 
end if 
end function