Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Building Websites with the ASP.NET Community Starter Kit

You're reading from   Building Websites with the ASP.NET Community Starter Kit A comprehensive guide to understanding, implementing, and extending the powerful and freely available application from Microsoft.

Arrow left icon
Product type Paperback
Published in May 2004
Publisher Packt
ISBN-13 9781904811008
Length 284 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Toc

Table of Contents (16) Chapters Close

TrixBox Made Easy
Credits
About the Authors
1. Introduction
1. The ASP.NET Community Starter Kit FREE CHAPTER 2. Touring a Community Starter Kit Website 3. Creating and Administering Community Websites 4. Themes, Skins, and the Common Controls 5. Customizing your Website 6. The Community Starter Kit Core Architecture 7. Inside a CSK Module 8. Creating a New Module 9. Customization with User Controls 10. Adding an RSS Feed 11. Deployment CSK Controls

Initializing the FAQ Module


Every community module has a corresponding maintenance stored procedure to populate the database with settings required for the module to work. Specifically, we need to register content page types by inserting two records into Community_PageTypes: one for an FAQ section page (to display a list of FAQs) and one for an FAQ page (showing a single FAQ in detail). We call the procedure Community_MaintenanceInitializeFaqs, following the existing CSK naming convention. An excerpt registering the FAQ section page type is shown here:

IF NOT EXISTS (SELECT * FROM Community_PageTypes WHERE pageType_Name=’Faq Section’)
BEGIN
INSERT Community_PageTypes
(
pageType_name,
pageType_description,
pageType_pageContent,
pageType_IsSectionType,
pageType_ServiceSelect
)
VALUES
(
‘FAQ Section’,
‘Contains FAQs in a question and answer style format’,
‘ASPNET.StarterKit.Communities.Faqs.FaqSection’,
1,
‘Community_FaqsServiceSelect’
)
END
ELSE
PRINT ‘WARNING: The FAQ Module has already been...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image