Re: [DOTNET] Character escapes and HttpWebResponse

2002-04-30 Thread Jim Arnold
TECTED]] > Sent: 29 April 2002 20:53 > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] Character escapes and HttpWebResponse > > > Jim, > > Thanks for the pointer. It appears to work correctly now in > my application. > > Is the HttpWebResponse.ResponseUri always going to b

Re: [DOTNET] Character escapes and HttpWebResponse

2002-04-29 Thread Erick Thompson
, Erick - Original Message - From: "Jim Arnold" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 29, 2002 12:18 PM Subject: Re: [DOTNET] Character escapes and HttpWebResponse > If create the request from a Uri, you can have some control over this. Try

Re: [DOTNET] Character escapes and HttpWebResponse

2002-04-29 Thread Jim Arnold
If create the request from a Uri, you can have some control over this. Try this: Uri uri = new Uri(uriString,true); HttpWebRequest req = WebRequest.Create(uri); The bool in the Uri constructor tells it to not escape the string. The Uri.UserEscaped property tells you if it has been escaped or n