Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting default 'using' parameters

Status
Not open for further replies.

markknowsley

Programmer
Aug 30, 2005
152
GB
When I create a new web form in VS 2005, the following 'using' statements are added by default:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

Is there a way to make Visual Studio 2005 add 'using System.Data.SqlClient;' by default too?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top