java.net.URLEncoder.encode("youruserid"); in c#?

  • Thread starter Thread starter Guest
  • Start date Start date
Vinny,

You can use the UrlEncode method on the HttpUtility class, or the
HttpServerUtility class.

Hope this helps.
 
Thank you, i am going with System.Web.HttpUtility.UrlEncode.

Nicholas Paldino said:
Vinny,

You can use the UrlEncode method on the HttpUtility class, or the
HttpServerUtility class.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Vinny Vinn said:
what is the c# equivalent to
java.net.URLEncoder.encode("youruserid");

Thanks,
Vinny Vinn
 
Back
Top