Latest web development tutorials

ASP URLEncode method

Server Object Reference Complete Server Object Reference

URLEncode the method specified string URL encoding rules to apply.

grammar

Server.URLEncode(string)

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

Examples

<%
response.write(Server.URLEncode("http://www.w3cschool.cc"))
%>

输出:

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


Server Object Reference Complete Server Object Reference