September 2009
M T W T F S S
« Aug   Oct »
 123456
78910111213
14151617181920
21222324252627
282930  

Tips to optimize design-time build performance for Web Sites in Visual Studio

There have been a number of posts with tips to improve build performance within Visual Studio 2005.  I’ve consolidate these posts and other tips into a single post of techniques for common problems.
ref: http://weblogs.asp.net/bradleyb/archive/2005/12/06/432441.aspx

Asp.Net Initialize Culture

1.

protected override void InitializeCulture()
    {
        string _culture = “th-TH“;
        Page.Culture = _culture;
        Page.UICulture = _culture;
        Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(_culture);
        Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(_culture);
    }

2.

<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”Template.aspx.cs”
Inherits=”Template” culture=”auto” uiculture=”auto” %>

LINQ to SQL Debug Visualizer

 Probably the biggest programming model improvement being made in .NET 3.5 is the work being done to make querying data a first class programming concept.  We call this overall querying programming model “LINQ”, which stands for .NET Language Integrated Query.  Developers can use LINQ with any data source, and built-in libraries are included with .NET 3.5 that [...]

Using LINQ with ASP.NET (Part 1)

One of the new things I’m super excited about right now is the LINQ family of technologies that are starting to come out (LINQ, DLINQ, XLINQ and others soon).

LINQ will be fully integrated with the next release of Visual Studio (code-name: Orcas) and it will include some very cool framework and tool support (including full [...]