Since 10th of February we started poll which aimed to determine what is your favorite development IDE. So after month and a half we can say that Visual Studio 2008 is being adopted quite well as 39% of all 80 votes goes for him. Second place goes to VS 2005 as it was the first to be able to use framework 2.0. Its interesting to note that 9% of all(or 7 votes) goes to the old school VS 2003! Here is the final result:

Looking for your votes again so we can determine which is your favorite programming language!
Great article by Scott Guthrie in which he describes how we can create packaged ASP.NET Setup Programs with VS 2005:
Scenario
You have built an ASP.NET Web Application using Visual Studio 2005, and want to enable customers to automatically install and deploy it on servers via an easy setup program.
Specifically, you want to create a standard Windows setup program that will create and configure the application on IIS, copy all of the application’s files to the appropriate location on the server, and ensure that ASP.NET 2.0 is correctly mapped to run the application. You also want the setup program to prompt the customer for the database location that the new application should use, and have the setup program automatically update the web.config file with the database connectionstring settings the customer provided.
One solution to consider using is the built-in “Web Setup Project” support that is built-in to Visual Studio 2005. Web Setup Projects can be used to pipe the compilation outputs from VS 2005 Web Application Projects as well as Web Site Projects (when used with VS 2005 Web Deployment Projects), to create encapsulated Windows setup programs. The below walkthrough demonstrates step-by-step how to create and use one.
read original
Once again Scott is delivering essential links: Below is this week’s list of useful .NET links for my weekly link-listing series. This morning I also updated my ASP.NET 2.0 Tips, Tricks and Gotchas Page to also include some more recent content posts I’ve done on my own blog this past spring. This page list ~60 past blog posts I’ve done, organized by category (VS, UI, Data, Security, Deployment, Performance, etc).
ASP.NET
ASP.NET AJAX
Visual Studio
.NET
view original
Sum up of not-to-miss articles and topics provided weekly by Scott:
One of the things I’m going to try and start doing is a weekly blog post of useful/interesting links on .NET related topics that I’ve found on the web. Below is this week’s version:ASP.NET
Visual Studio
Silverlight
WPF
.NET General
read original
I came acros this nice article by Mahesh Chand, who explains how to get started with AJAX 1.0
“Recently, Microsoft released the commercial version of AJAX 1.0 as an extension of ASP.NET 2.0. That means you can develop AJAX enabled Web applications using ASP.NET 2.0.
After fruition of this article, you will have a better understanding of AJAX 1.0 extensions and learn how easy is to build AJAX enabled Web applications using ASP.NET 2.0 and Visual Studio 2005.“
view original
On the Visual Basic Team blog there is interesting post about “New Data Tools Features in Visual Studio Orcas” following are four major ones:
- Object Relational Designer
- Hierarchical Update in Typed Dataset
- N –Tier Support in Typed Dataset
- Local Data Cache with SQL Compact Edition
To debug JS in Vs 2005 make sure you haven’t checked “Disable script debugging” in Internet Expolorer Option menu.
Under the Debug menu, Windows, choose Script Explorer. This should show a window on the right side with a list of the running documents. It should show the aspx page any any .js files you have included. Open up any of the .JS files and set breakpoints in your code. Once the script is executed it should stop at your breakpoints and give you all the current watch funcationality that you have come to expect from VS.NET.
The next version of VB .Net adds Xml as a built in data type using the new LINQ to XML API. As a built in data type, VB 9.0 provides the ability to create XML using XML Literals and to query XML documents using XML properties. This webcast contains a demo by David Schach, the lead developer in this project, of creating a program to share pictures over the internet.
view original
The March CTP of Visual Studio marks the debut of a much-requested and long-awaited feature: improved JScript IntelliSense. We’ve been working on this for almost a year now and I’m pretty excited to finally be able to share it with the public. There are a variety of topics I’d like to deep dive into, but for today let’s just take a quick aerial tour of the new features.
view original