Configuring IIS to Run 32-bit Applications on 64-bit Windows
Configuring IIS to Run 32-bit Applications on 64-bit Windows
If your application is using any 32bit dll, IIS on 64 bit machine needs to be switched to support 32 bit applications. Otherwise you will get an error message saying:
Could not load file or assembly 'XXXX' or one of its dependencies. A...
[More]
Migration of ASP.NET app from IIS6 to IIS7 (7.5)
For many of us familiar problem. You developing applications under IIS6 and you're about to move them to IIS7. In previous version of IIS was enough to copy over your files, create app pool and site. IIS7 (7.5) is different in this point. In IIS6 there was only one way hot to extend server wi...
[More]
ReSharper 5.0 Beta released
JetBrains' ReSharper 5.0 Beta is now available and includes many improvements, fully VS 2010 support. ReSharper 5.0 has evolved in four major directions: Web Development. We have greatly extended the toolset available to ASP.NET developers when they work with markup files and web site infrastru...
[More]
Visual Studio 2010 and .NET Framework 4 Beta 2 For Public
Visual Studio 2010 and .NET Framework 4 focuses on the core pillars of developer experience, support for the latest platforms, targeted experiences for specific application types, and core architecture improvements. Microsoft Visual Studio 2010 Ultimate Beta 2 - ISO http://download.microsoft.com...
[More]
Javascript in Flash
Imaging an situation when you need to track redirect activity from the flash animation. Execute some tracking script right before user left the flash animation. Basically there are two ways have you can call javascript from ActionScript: 1) getURL()2) ExternalInterface.callProblem is that browsers ...
[More]
Build Version Increment Add-In Visual Studio
Somehow Visual Studio doesn't come with an option to only auto increment the build version of the AssemblyFileVersion attribute. Sure, by placing an * in the AssemblyVersion attribute and leaving the the AssemblyFileVersion out the compiler will auto generate build versions for both but this is a pa...
[More]
Simple validation in Model View Presenter
Last time I wrote about how to implement simple page by Model View Presenter pattern. Quickly we created form with 2 textboxes, label and button for firing presenter method SaveData. This time let's focus a bit to validation in presenter and co-working your page with validation result. Why ...
[More]
Tracking with dcsMultiTrack invalid fields on client side
dcsMultiTrack - is 3rd compoment. Instead of dcsMultiTrack you can use your own tracking tool or for example google analytics. Sometimes you can find yourself in situation when you want to track if some of the fields on your form is not valid. Track some value when it does not goes th...
[More]
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]