Server ASP.Net

<%@ Page Language="VB" %>


   Encoding URL Strings
   
      Sub UrlPathEncode()
         Dim StrToEncode As String
         Dim StrToReturn As String
         StrToEncode = "UrlPathEncode.aspx? Arg = foo"
         StrToReturn = Server.UrlPathEncode(StrToEncode)
         Response.Write("" & StrToReturn & "")
      End Sub
   


<% UrlPathEncode %>