Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~314 People Reached
Favorite Tags
Member Avatar for melektaus55

I have problem with the responseText property in Safari, Google Chrome and IE. Line 68 - the responseText is empty. This works fine in Firefox and Opera. Also i have this problem with the responseText only in the block that starts at line 61. I don't have problem with the …

Member Avatar for crokusek
0
251
Member Avatar for melektaus55

[CODE]System.Text.Encoding enc = System.Text.Encoding.Unicode; byte[] bytes = enc.GetBytes(plainTextContent); string decodedText = Encoding.GetEncoding(charset).GetString(bytes);[/CODE] "charset" is ISO-8859-1. If i use Unicode encoding, the GetString() method returns only the first character of bytes[], if i use ASCII or UTF-8 encoding i get all characters but there are some characters that are represented with …

0
63