Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#
Article

Customization of Project and Item Templates - Part II

Rate me:
Please Sign up or sign in to vote.
3.00/5 (3 votes)
22 Apr 2011CPOL1 min read 18.3K   232   6   1
Creation of Project and Item Templates in Visual Studio - Part II

Introduction

When you add a new project item in a project, whether the item file is a design file or code file, the project item template will generate initial designing or coding in the file. We can customize the item template to create a common initial design settings or coding to be generated.

Background

Part I of this article can be viewed at this link.

Creation of Item Template

Here we are creating a new ASP.NET web application which contains customized item template:

  • Create a new ASP.NET web application naming MyAspxTemplate.
  • Add a new item named ViewPage.aspx under Views folder.
  • Create initial sample design in ViewPage.aspx page.
  • Image 1

  • Save the project.
  • Export the item template by clicking Export Template under File menu.
  • Select Item Template and Click Next.
  • Image 2

  • Select the ViewPage.aspx checkbox item to Export and Click Next:
  • Image 3

  • Select Item References to be included with the Template, if any:
  • Image 4

  • Enter Template name and Description and Click Finish.
  • Image 5

Implementing the New Item Template

Create a new ASP.NET web application using Myaspxtemplate

  • Create a new ASP.NET web application.
  • Add a new .aspx page using Myaspxtemplate.
  • You can see that the initial design was generated in the new page.
  • Image 6

Conclusion

You can also pass custom parameters to the templates by editing the .vstemplate file of the item template project. We will see the creation of text template generators to generate multiple files for project item templates in the next part of this article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I have experience in more than 10 years in microsoft technologies.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Selvin22-Apr-11 23:41
Selvin22-Apr-11 23:41 

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.