Dusan Czupek's blog

Blog related .NET & web development

Recent posts

Tags

Categories

Navigation

Pages

    Archive

    Blogroll

      Disclaimer

      The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

      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]
      Posted: Aug 05 2009, 12:57 by dczupek | Comments (27) RSS comment feed |
      • Currently 1/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: dotNet

      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]
      Posted: Jul 12 2009, 17:47 by dczupek | Comments (7) RSS comment feed |
      • Currently 0/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: dotNet

      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]
      Posted: Jun 30 2009, 20:56 by dczupek | Comments (9) RSS comment feed |
      • Currently 4.333333/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: dotNet

      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]
      Posted: May 20 2009, 08:30 by dczupek | Comments (14) RSS comment feed |
      • Currently 0/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: dotNet