最新的Web开发教程
 

ASP URLEncode的方法


<完整服务器对象参考

该URLEncode的方法应用URL编码规则指定的字符串。

句法

Server.URLEncode(string)

参数 描述
string 需要。 要编码的字符串

<%
response.write(Server.URLEncode("http://www.w3ii.com"))
%>

Output:

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

<完整服务器对象参考