Forum: C# Apr 4th, 2009 |
| Replies: 0 Views: 748 System.Text.Encoding enc = System.Text.Encoding.Unicode;
byte[] bytes = enc.GetBytes(plainTextContent);
string decodedText = Encoding.GetEncoding(charset).GetString(bytes);
"charset" is... |
Forum: JavaScript / DHTML / AJAX Nov 18th, 2008 |
| Replies: 2 Views: 1,874 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... |