FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

ASP URLEncode Method


Server Object Reference Complete Server Object Reference

The URLEncode method applies URL encoding rules to a specified string.

Syntax

Server.URLEncode(string)

Parameter Description
string Required. The string to encode

Example

<%
response.write(Server.URLEncode("http://tutorials"))
%>

Output:

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

Server Object Reference Complete Server Object Reference