ASP.NET MVC 3 Preview 1 released
I must admit that the ASP.NET MVC team is so consistent in developing ASP.NET MVC framework to be better and better. Just few months after the release of ASP.NET MVC 2, now the Preview 1 of ASP.NET MVC...
View ArticleVS2010 Tips #14: How change the default browser used in debugging ASP.NET MVC...
Changing default browser used in debugging ASP.NET MVC 2 is a bit tricky in Visual Studio 2010. To use ScottGu’s steps, you will need to add new ASPX page first. But unfortunately if you delete the...
View ArticleUmbraco: How to get Media in code-behind
To get a media (i.e.: image) in code-behind you can do it like this. var currentPage = umbraco.presentation.nodeFactory.Node.GetCurrent(); var media = new umbraco.cms.businesslogic.media.Media(...
View ArticleHow to get Table Cell or Text Box value in SSRS
To get the Table Cell or Text Box value in SSRS you can do like this: ReportItems![Text Box name].Value Note: replace the [Text Box name] with the name of Text Box you want to access.
View ArticleHow to recover from “Object reference not set to an instance of an object”...
I shocked when I found that I couldn’t access Umbraco control panel of one of the most important websites that my client has. It threw “Object reference not set to an instance of an object” error once...
View ArticleVulnerability in ASP.NET Could Allow Information Disclosure
UPDATE (2010-09-29): Microsoft has release the fix. It should be available through Windows Update. More Info:...
View ArticleVS2010 Tips #15: Disable IntelliTrace for better debugging performance...
I recently upgrading ASP.NET MVC 2 solution from Visual Studio 2008 to Visual Studio 2010 (Ultimate Edition). I found that debugging was very slow. Depending on project size, it took around 30 seconds...
View ArticleHow to solve annoying Internet Explorer caching when debugging ASP.NET website
TweetToday I was debugging ASP.NET website and got very annoying issue. The website has file download feature and anytime I download the file IE9 couldn’t open it – the file was missing before the PDF...
View ArticleInstalling Visual Studio 2012 after Visual Studio 2013
TweetAlthough it’s recommended that we install Visual Studio versions in the order in which they were released (for example, install Visual Studio 2012 before we install Visual Studio 2013) as...
View ArticleSQL Server Scripts to setup ASP.NET Identity Tables
If you are not using database first approach you probably need these scripts to setup the ASP.NET Identity tables in your database. USE [YourDBName] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO...
View Article