Articles about asp.net

23 Aug 2011 ...

Control which files are included when publishing an ASP.NET project

In this post we look at how to modify an ASP.NET project to include additional files not included in the project, and also how to exclude specific folders, when the project is published or deployed.

12 May 2011 ...

Custom 404 and error pages in ASP.NET

Here's a brief summary of the HTTP error settings we use for custom 404 and other error pages for ASP.NET websites running on IIS 7+.

6 May 2011 ...

Using DebugView to see debug output in real-time

DebugView is a great way to see what your code is doing while an application is running, for example to see what the code for an ASP.NET web application does while browsing the site.

3 Apr 2011 ...

Installing ASP.NET MVC 3 after Visual Studio 2010 SP1

I had some problems installing the Visual Studio tools for ASP.NET MVC 3 after having applied SP1 for VS2010, but this workaround sorted out the problems for me.

18 Nov 2010 ...

Set up dotLess in a new ASP.NET project

This post walks you through how to set up the dotLess CSS framework with an ASP.NET project in order to enable inheritance, arithmetic and variables in stylesheets.

15 Sep 2010 ...

Manually setting the namespace for a web service proxy class in Visual Studio

When a web service proxy class is generated by Visual Studio it comes with a default namespace. This post shows a way of modifying how the proxy class is generated to manually specify which namespace to use.

6 Sep 2010 ...

Add a stylesheet link programmatically in ASP.NET

Code snippet for programmatically adding a CSS link in ASP.NET.