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
,
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
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