A Arne Oct 19, 2009 #1 How do I instanciate HttpServerUtility? I am writing an exe and I need to urlencode some data.
M Martin Honnen Oct 19, 2009 #2 Arne said: How do I instanciate HttpServerUtility? I am writing an exe and I need to urlencode some data. Click to expand... Use the static UrlEncode method of System.Web.HttpUtility: http://msdn.microsoft.com/en-us/library/system.web.httputility.urlencode.aspx
Arne said: How do I instanciate HttpServerUtility? I am writing an exe and I need to urlencode some data. Click to expand... Use the static UrlEncode method of System.Web.HttpUtility: http://msdn.microsoft.com/en-us/library/system.web.httputility.urlencode.aspx
G Gregory A. Beamer Oct 19, 2009 #3 How do I instanciate HttpServerUtility? I am writing an exe and I need to urlencode some data. Click to expand... string encoded = System.Web.HttpUtility.UrlEncode(originalString); Peace and Grace, -- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA Twitter: @gbworld Blog: http://gregorybeamer.spaces.live.com ******************************************* | Think outside the box! | *******************************************
How do I instanciate HttpServerUtility? I am writing an exe and I need to urlencode some data. Click to expand... string encoded = System.Web.HttpUtility.UrlEncode(originalString); Peace and Grace, -- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA Twitter: @gbworld Blog: http://gregorybeamer.spaces.live.com ******************************************* | Think outside the box! | *******************************************