网络编程
位置:首页>> 网络编程>> Asp编程>> asp中文URL编码server.urlencode

asp中文URL编码server.urlencode

 来源:asp之家 发布时间:2008-08-08 11:22:00 

标签:server.urlencode,编码,url

在url网址中,我们经常使用server.urlencode来对网址进行编码,特别是遇到网址中有中文字符的时候,如

<a href="https://www.aspxhome.com/?type=<%=server.urlencode("asp编程")%>">asp编程</a>

运行后就变成:

<a href="https://www.aspxhome.com/?type=asp%B1%E0%B3%CC">asp编程</a>


URLEncode


URLEncode 方法将 URL 编码规则,包括转义字符,应用到指定的字符串。

语法

Server.URLEncode( string )

参数

  • String

  • 指定要编码的字符串。

示例

脚本

<%Response.Write(Server.URLEncode("http://www.microsoft.com")) %>

输出

http%3A%2F%2Fwww%2Emicrosoft%2Ecom

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com