ASP URLEncode 方法
❮ 完整服务器对象参考
URLEncode 方法将 URL 编码规则应用于指定的字符串。
语法
Server.URLEncode(string)
参数 | 描述 |
---|---|
string | 必需。要编码的字符串。 |
示例
<%
response.write(Server.URLEncode("https://w3schools.org.cn"))
%>
输出
https%3A%2F%2Fwww%2Ew3schools%2Ecom
❮ 完整服务器对象参考