怎样使abc.asp?id=33转换成.html形式的
怎样使abc.asp?id=33转换成.html形式的
2007-04-04 16:35
HTMLEncode 方法对指定的字符串应用 HTML 编码。
Server.HTMLEncode( string )
脚本
<%= Server.HTMLEncode("The paragraph tag: <P>") %>
输出
The paragraph tag: <P>
2007-04-04 20:51