Open In App

ASP Server.URLEncode Method

Improve
Improve
Like Article
Like
Save
Share
Report

The ASP Server.URLEncode method is used to apply URL encoding rules to convert to a specified string. Below are given the URLEncode converts characters as follows: 

  • Spaces ( ) are converted to plus signs (+).
  • Non-alphanumeric characters are escaped to their hexadecimal representation.

Syntax: 

Server.URLEncode(string)

Parameter Values: It contains a string value that specifies the string to be encoded. 

Example: 

ASP




<%
response.write(Server.URLEncode("https://www.geeksforgeeks.org"))
%>


Output:  

https%3A%2F%2Fwww%2Egeeksforgeeks%2Eorg

Last Updated : 02 Mar, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads