-------------------------------------소스-----------------------------------
<%
Function no_html(contents)
contents = trim(contents) '앞, 뒤 공백제거
contents = replace(replace(contents,"<","<"),">",">") '<, > 처리
contents = replace(contents,chr(13)&chr(10),"<br>") 'Enter 처리
contents = replace(contents,chr(32)," ") 'Space Bar 처리
contents = replace(contents,chr(9)," ") 'Tab 처리
contents = replace(contents,"'","''") '작은따옴표(') 처리
contents = replace(contents,"<%","<font color=""800000""><%") 'Asp 불능..처리
contents = replace(contents,"%>","%></font>")
no_html = contents
End Function
Function html(contents)
contents = trim(contents) '앞, 뒤 공백제거
contents = replace(contents,"<t","<t") '<table 테그 사용금지1
contents = replace(contents,"<T","<T") '<table 테그 사용금지2
'contents = replace(contents,"<tr"&"<Tr","<tr") '<tr 테그 사용금지
'contents = replace(contents,"<td"&"<Td","<td") '<td 테그 사용금지
contents = replace(contents,"'","''") '작은따옴표(') 처리
contents = replace(contents,"<"&chr(37),"<font color=""800000""><%") 'Asp 불능..처리
contents = replace(contents,chr(37)&">","%></font>") 'Asp 불능..처리
html = contents
End Function
%>
<%
aa = no_html(request("aa"))
cc = html(request("aa"))
%>
<%
Function no_html(contents)
contents = trim(contents) '앞, 뒤 공백제거
contents = replace(replace(contents,"<","<"),">",">") '<, > 처리
contents = replace(contents,chr(13)&chr(10),"<br>") 'Enter 처리
contents = replace(contents,chr(32)," ") 'Space Bar 처리
contents = replace(contents,chr(9)," ") 'Tab 처리
contents = replace(contents,"'","''") '작은따옴표(') 처리
contents = replace(contents,"<%","<font color=""800000""><%") 'Asp 불능..처리
contents = replace(contents,"%>","%></font>")
no_html = contents
End Function
Function html(contents)
contents = trim(contents) '앞, 뒤 공백제거
contents = replace(contents,"<t","<t") '<table 테그 사용금지1
contents = replace(contents,"<T","<T") '<table 테그 사용금지2
'contents = replace(contents,"<tr"&"<Tr","<tr") '<tr 테그 사용금지
'contents = replace(contents,"<td"&"<Td","<td") '<td 테그 사용금지
contents = replace(contents,"'","''") '작은따옴표(') 처리
contents = replace(contents,"<"&chr(37),"<font color=""800000""><%") 'Asp 불능..처리
contents = replace(contents,chr(37)&">","%></font>") 'Asp 불능..처리
html = contents
End Function
%>
<%
aa = no_html(request("aa"))
cc = html(request("aa"))
%>