如何用htmlEncode来显示Unicode?
(编辑:jimmy 日期: 2024/11/7 浏览:3 次 )
如何用htmlEncode来显示Unicode?
<%@ Language=VBScript %>
<html>
<head>
<title>千花飞舞之UNICODE编码</title>
</head>
<body>
<%
Dim strU
dim strNormal
strU= ChrW(7913)
strNormalANSI= "aiN"
%>
<font face="arial" size=+1>
<P>An ANSI value: <%=strNormalANSI%>
<P>An htmlencoded String: <%=Server.htmlEncode(strU)%>
</font>
下一篇:如何提高Request集合的使用效率?