Click here to Skip to main content
15,895,142 members
Articles / Programming Languages / XML
Article

How to get Intellisense for Web.config and App.config in Visual Studio .NET

Rate me:
Please Sign up or sign in to vote.
4.53/5 (21 votes)
11 Jul 20052 min read 67.5K   664   49   4
This article provides a schema definition for .NET config files that allows Visual Studio .NET to display intellisense.

Overview

Web.config and App.config have can have many different configuration options but it is difficult to remember what some of the less commonly used options are. This article provides a schema definition for .NET configuration files such as Web.config and App.config. The schema makes Visual Studio .NET help you out by displaying intellisense when working in these files.

Extend Visual Studio .NET with XML Schema

Visual Studio .NET has an extensible model that provides intellisense in XML and HTML-based documents based on XML schema. To get intellisense for Web.config or App.config I created a schema for the .NET configuration files and and put the schema into a folder under the Visual Studio .NET installation.

Visual Studio .NET then reads the schema file and lists the schema in the targetNamespace drop-down list when editing the properties of the document. Selecting the schema from the list adds the xmlns attribute to the root element of the document.

Warning!

There is a problem with this method that you need to be aware of. To get intellisense in Visual Studio .NET, the xmlns attribute is added to the root element of the document so that Visual Studio .NET knows which schema to use for the document.

ASP.NET and Winforms applications will throw a runtime error if the <configuration> element in web.config or app.config has the xmlns attribute when you run your application. e.g. This will give an error.

<configuration xmlns="SchemaForWebConfig">

You must remember to remove the xmlns attribute when you are finished using intellisense in your config file. If you do not, you will get an error in your application!

How to install

  1. Download the CLRconfigSchema.zip file from the link above
     
  2. For Visual Studio .NET 2002 unzip the contents of the zip file into
    C:\Program Files\Microsoft Visual Studio .NET\Common7\Packages\<BR>schemas\xml
  3. For Visual Studio .NET 2003 unzip the contents of the zip file into
    C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Packages\<BR>schemas\xml
  4. Open Web.config or App.config in Visual Studio .NET
     
  5. View the properties for the document
     
  6. Select .NET Configuration File from the list for the targetSchema property

    Image 1
     
  7. Edit Web.config or App.config

    Image 2
     
  8. Remember to remove the xmlns attribute from the <configuration> element when you have finished editing your Web.config file!

    Image 3

More Information on Visual Studio .NET Schema Annotations

This topic is covered in more depth in the MSDN article Visual Studio .NET Schema Annotations.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalsimply awesome Pin
imsathy23-Mar-06 1:56
imsathy23-Mar-06 1:56 
GeneralGreat work Pin
teleolog19-Oct-05 21:06
teleolog19-Oct-05 21:06 
GeneralNice tip Pin
Bruno Capuano21-Jul-05 20:39
Bruno Capuano21-Jul-05 20:39 
GeneralNice Article Pin
Javier Lozano11-Jul-05 10:13
Javier Lozano11-Jul-05 10:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.