Book Image

Building Websites with the ASP.NET Community Starter Kit

Book Image

Building Websites with the ASP.NET Community Starter Kit

Overview of this book

Microsoft's ASP.NET Community Starter Kit (CSK) is a powerful, freely available application that allows you to quickly create a fully featured community-driven website, complete with article and news management, downloads, forums, and user handling. Supported and tested by thousands of developers in the ASP.NET community across the world, the Community Starter Kit offers you the luxury of a scalable and extensible architecture, and the ability to brand your own site. This book will take you inside the Community Starter Kit, allowing you to harness its power for easily creating your own websites. The book is structured to help you understand, implement and extend the Community Starter Kit: Understand how the Community Starter Kit works. Build the skills to implement your own site. Develop the confidence to extend the system for your own needs. With this book, you will learn how to: Install and configure the CSK Find your way around the CSKs towering range of features Create and administer community websites Become familiar with the common CSK ASP.NET controls Customize your CSK site Discover the secrets of the CSK core architecture Explore the inner workings of CSK modules Extend the CSK by creating new modules Customize existing modules with Web controls Add an RSS feed to share your content with others Deploy your CSK website This book is for ASP.NET developers with a sound grasp of C# and access to Visual Studio .NET. This book uses the Visual Studio. NET version of the ASP.NET Community Starter Kit available from http://www.asp.net/StarterKits/
Table of Contents (16 chapters)
TrixBox Made Easy
Credits
About the Authors
Introduction
CSK Controls

Changing the Layout


If you’re as excited as I am about how easy it has been to build the site so far, you’re probably curious about what’s next. Well, it’s time to change the colors.

Updating the Parent Section and the Styles

ParentSection is the module that generates the Home page. Apart from changing the styles used to display text, we want to get rid of the HOME title that appears at the top of the page. Apart from modifying Home, we’ll add or change a number of styles that update the look of various parts of the website. Let’s do this now.

  1. 1. In order to remove the title from ParentSection, we need to change the skin file ParentSection_ParentSections.ascx. Because we don’t want to mess with the default theme, we will copy this file from the default theme to our Blue theme.

  2. 2. In Visual Studio, copy ParentSection_ParentSection.ascx from Communities/Common/Themes/Default/Skins/ContentSkins to Communities/Common/Themes/Blue/Skins/ContentSkins, and choose no when asked about creating a new...