Home All Groups Group Topic Archive Search About

URLDecode differences in NET 1.1 and 2.0

Author
4 Apr 2007 11:06 AM
samuelhon
Hi all

I'm attempting to decode a string which works fine in 1.1

However, we've now moved the project to 2.0 and its not happy. The
length of the decodedString is different. I've tried changing the
encoding type which is UTF8.

Any thoughts?

Cheers

Sam

string stringToDecrypt = "%eb%81%85%ee%95%b1%eb%b5%a7%e0%a0%b6%ed%bb%8e
%e5%98%b4%ef%bc%97%e4%a3%ab";

string decodedString =
System.Web.HttpUtility.UrlDecode(stringToDecrypt);

Author
5 Apr 2007 10:54 AM
Marc Gravell
I'm not sure encoding would be an issue here... could you post the
results (decodedString) you get in 1.1 vs 2.0? Perhaps that might
shine a light...

Marc
Author
5 Apr 2007 3:17 PM
samuelhon
On 5 Apr, 11:54, "Marc Gravell" <marc.grav***@gmail.com> wrote:
> I'm not sure encoding would be an issue here... could you post the
> results (decodedString) you get in 1.1 vs 2.0? Perhaps that might
> shine a light...
>
> Marc

Hi Marc

The decodedString doesnt want to paste in, its all squares and other
characters

I'm more curious about the length of the string which is different

Ta

Sam
Author
6 Apr 2007 7:25 PM
Marc Gravell
In that case, can I ask: what is this string holding? it sounds like
it might be holding some raw data, in which case a byte[] (perhaps
expressed in base64) might be a better option.
Author
5 Apr 2007 2:46 PM
Peter Theill
> I'm attempting to decode a string which works fine in 1.1
>
> However, we've now moved the project to 2.0 and its not happy. The
> length of the decodedString is different. I've tried changing the
> encoding type which is UTF8.

Are your '<globalization>' tag in Web.config the same for both
projects? If it's not available in one of them it falls back to a more
global setting (machine.config) so ensure your have a globalization
tag in both of your projects and that there are the same.

Rgd,
Peter Theill
Author
5 Apr 2007 3:15 PM
samuelhon
Show quote
On 5 Apr, 15:46, "Peter  Theill" <the***@gmail.com> wrote:
> > I'm attempting to decode a string which works fine in 1.1
>
> > However, we've now moved the project to 2.0 and its not happy. The
> > length of the decodedString is different. I've tried changing the
> > encoding type which is UTF8.
>
> Are your '<globalization>' tag in Web.config the same for both
> projects? If it's not available in one of them it falls back to a more
> global setting (machine.config) so ensure your have a globalization
> tag in both of your projects and that there are the same.
>
> Rgd,
>  Peter Theill

Hi Peter

Thanks for the reply. I've checked the globalization tag and they're
both the same. I've done some tests with the additional Encode
parameter and even if I set it to UTF8 in both frameworks, it still
fails

Very strange

Any other ideas?

Cheers

Sam

AddThis Social Bookmark Button