HttpServerUtility.UrlPathEncode Method
Assembly: System.Web (in system.web.dll)
'Declaration Public Function UrlPathEncode ( _ s As String _ ) As String 'Usage Dim instance As HttpServerUtility Dim s As String Dim returnValue As String returnValue = instance.UrlPathEncode(s)
public String UrlPathEncode ( String s )
public function UrlPathEncode ( s : String ) : String
Parameters
- s
The text to URL-encode.
Return Value
The URL encoded text.URL encoding ensures that all browsers will correctly transmit text in URL strings. Characters such as ?, &, /, and spaces might be truncated or corrupted by some browsers, so those characters must be encoded in <a> tags or in query strings where the strings can be re-sent by a browser in a request string.
UrlPathEncode is a convenient way to access the HttpUtility.UrlPathEncode method at run time from an ASP.NET Web application. Internally, UrlPathEncode uses HttpUtility.UrlPathEncode to encode strings.
The following code example URL-encodes a string before sending it to a browser client. In this example, the string MyURL is encoded as "http%3a%2f%2fwww.contoso.com%2farticles.aspx?title = ASP.NET Examples".
Dim MyURL As String MyURL = "http://www.contoso.com/articles.aspx?title = ASP.NET Examples" Response.Write( "<A HREF = " & Server.UrlPathEncode(MyURL) & "> ASP.NET Examples <br>")
String myURL;
myURL = "http://www.contoso.com/articles.aspx?title = ASP.NET Examples";
get_Response().Write(("<A HREF = " + get_Server().UrlPathEncode(myURL)
+ "> ASP.NET Examples <br>"));
var myURL : String myURL = "http://www.contoso.com/articles.aspx?title = ASP.NET Examples" Response.Write( "<A HREF = " + Server.UrlPathEncode(myURL) + "> ASP.NET Examples <br>")
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.