Server ASP.Net

<%@ Page Language="C#" %>


   Encoding URL Strings
   
      void UrlPathEncode()
      {
         string StrToEncode;
         string StrToReturn;
         StrToEncode = "UrlPathEncode.aspx? Arg = foo";
         StrToReturn = Server.UrlPathEncode(StrToEncode);
         Response.Write("" + StrToReturn + "");
      }
   


<% UrlPathEncode(); %>