August 2009 Entries
The September 2009 issue of TechNet Magazine is out on the website. Check out my IT Toolbox column here:
September 2009 TechNet Magazine IT Toolbox
In this issue I covered:
Clonezilla-Live: Create Disk Images
TrIDNet File Identifier: Identify Unkown Files
TrueCrypt 6.2: Protect Sensitive Data
NetWrix Disk Space Monitor: Keep An Eye On Disk Space
Check it out and let me know what you think!
And if you have a tool you want to see me review, suggest it to me: tntools@microsoft.com.
ASP.Net web applications default to UTF-8 encoding. Now, if you are using JavaScript to create or change URLs, you might run into an issue with the way the function "escape()" encodes characters if you are handling the decoding in your code behind via Request.QueryString.
To avoid ending up with "unkown" characters in your resultant string, use the JavaScript function "encodeURIComponent()" instead. This should correctly encode your URLs for UTF-8.