December 2008 Entries
The January 2009 issue of TechNet Magazine is out on the website. Check out my IT Toolbox column here:
http://technet.microsoft.com/en-us/magazine/dd314393.aspx
In this issue I covered:
TortoiseSVN - Simplfy Source Control
Iometer - Measure Disk I/O
APC Switched Rack PDU - Switched Remote Power
WinRAR 3.80 - Manage Compressed Archives
The December issue of TechNet Magazine is out on the website. Check out my IT Toolbox column here:
http://technet.microsoft.com/en-us/magazine/dd228992.aspx
In this issue I covered:
GParted Live - Manage Partitions for Free
Xenu Link Sleuth - Verify Website Links
Desktop Authority - Manage your Server and Desktop Environments
Cheat at Administering Office Communications Server 2007 (Book)
If you encounter this error while navigating away from an AJAX-enabled page with a non-IE browser, you can silence it with the following JavaScript:
<script type="text/javascript">if (!document.all) //non-ie{ window.onbeforeunload = function() { Sys.WebForms.PageRequestManager.getInstance().add_endRequest(ignoreOnEndRequest); }}function ignoreOnEndRequest(sender, e) { err = e.get_error(); if (err) { if (err.name == "Sys.WebForms.PageRequestManagerServerErrorException") { e.set_errorHandled(true); } } }</script>
Hope it works for you!
Firefox uses in memory caching for JavaScript and can cause strange errors in your MSFT ASP.NET Ajax applications.
Try adding this to your load event to prevent those errors:
if (Request.Browser.MSDomVersion.Major == 0) // Non IE Browser?)
{
Response.Cache.SetNoStore(); // No client side cashing for ...