最新的Web開發教程
 

ASP URLEncode的方法


<完整服務器對象參考

該URLEncode的方法應用URL編碼規則指定的字符串。

句法

Server.URLEncode(string)

參數 描述
string 需要。 要編碼的字符串

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

Output:

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

<完整服務器對象參考