Request.UrlReferrer Is Null In IE 6.0 when location.href(Javascript) is used to redirect
Microsoft announced fix will be from IE9. Until you can avoid problems with following code: function navigateWithReferrer(url) { var fakeLink = document.createElement ("a"); if (typeof(fakeLink.click) == 'undefined') location.h...
[More]
ReSharper for Visual Studio 2010 (Preview)
Finally JetBrains launched ReSharper v.5.0 for VS2010 after a month delay against previous announce.
Installation it self should be a bit tricky. First of all download a nightly build of ReSharper from
ReSharper EAP - ReSharper for Visual Studio 2010 (Preview). The download links are located at th...
[More]
Model View Presenter (MVP) Pattern
Model-View-Presenter is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic. The Model is an interface defining the data to be displayed or otherwise acted upon in the user interface. The View is an interface ...
[More]
Speed up ASP.NET page/control loading
Often you find yourself waiting after you made changes in code behind. Delay during first page load has to do with code compilation. With simple modification of web.config you can speed up this process a bit. Main issue is that ASP.NET engine by default compiles all files in folder where you page is...
[More]