<完全なサーバオブジェクトリファレンス
URLENCODEメソッドは、指定された文字列をURLエンコード規則を適用します。
構文
Server.URLEncode(string)
パラメーター | 説明 |
---|---|
string | 必須。 エンコードする文字列 |
例
<%
response.write(Server.URLEncode("http://www.w3ii.com"))
%>
Output:
http%3A%2F%2Fwww%2Ew3ii%2Ecom
<完全なサーバオブジェクトリファレンス