Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

ASP URLEncode Method


❮ 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("https://www.w3schools.com"))
%>

Output:

https%3A%2F%2Fwww%2Ew3schools%2Ecom

❮ Complete Server Object Reference