Blog Stats
  • Posts - 94
  • Articles - 0
  • Comments - 10
  • Trackbacks - 0

 

December 2008 Entries

TechNet Magazine IT Toolbox: January 2009 issue is on the website

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

December Issue of TechNet Magazine: IT Toolbox

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)

Sys.WebForms.PageRequestManagerServerErrorException in FireFox with MSFT Ajax

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 caches JavaScript state

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 ...

 

 

Copyright © Greg Steen