Monthly Archives: July 2008

Visual Studio 2008 Web Deployment Projects

Download it from here. Best feature you can get from this, “Create a single assembly” for all your files in your web project. It also offers a lot more customisation for MSBuild. For me, creation of single assembly for all the files became so important because of library management issues. Scott Guthrie has couple of nice blog entries on this read it hereand here. Cheers

Continue reading →

Simple Cascading Drop Down List using ASP.Net AJAX

Here is a step by step tutorial to create a simple cascading drop down list, 1) Add a new asp.bet (aspx) page and 2 drop down controls into it. <asp:DropDownList ID="One" runat="server"> </asp:DropDownList><br /> <asp:DropDownList ID="Two" runat="server"> </asp:DropDownList> 2) Add some server side code to populate the first drop down, depending on selection on first drop down we will populate the second one. (well thats the idea     protected void Page_Load(object sender, EventArgs e)     {         if …

Continue reading →

Sql Server TRY-CATCH

A nice new feature in Sql Server 2005 is exception handling with TRY-CATCH, you can read all about it here -> MSDN Link

Continue reading →