Skip navigation

Developer .NET UPDATE September 5, 2003

Developer .NET UPDATE—brought to you by the Windows & .NET Magazine Network

http://www.winnetmag.com

This Issue Sponsored By

DevConnections--Early Bird Discount to Expire

http://www.devconnections.com

New Exchange Event from Windows & .NET Magazine Connections

http://www.winconnections.com

September 5, 2003--In this issue:

1. Developer .NET Perspectives

  • Making Minor Modifications to the Community Starter Kit

2. Announcements

  • Special Offer from SQL Server Magazine
  • Discover Better Ways to Support and Secure Your Clients

3. Resource

  • New Visual Basic .NET Resource

4. Event

  • New--Mobile & Wireless Road Show

5. New and Improved

  • Develop Web Sites and Applications with Style
  • Tell Us About a Hot Product and Get a T-Shirt!

6. Contact Us

  • See this section for a list of ways to contact us.

Sponsor: DevConnections--Win a Harley Davidson Motorcycle

DevConnections = Microsoft ASP.NET Connections + Visual Studio Connections + SQL Server Magazine Connections + Microsoft Office System Conference. Register early and you will receive all four conferences for the price of one. Choose from over 170 sessions. All session and speaker information plus the conference brochures are online.

This is your chance to get the latest roadmap from Microsoft, learn practical tips and insights that you'll use on the job immediately, and network with the top gurus in the industry. Plus, you may win a brand new Harley Davidson motorcycle among other cool giveaways at the prize drawing held in the exhibit hall.

DevConnections is held Oct 12 - 15 in Palm Springs at the beautiful La Quinta Resort and Club. Don't miss this opportunity to get the training you need to stay on top of today's technology and keep your competitive edge on the job. Register now online or call 800-438-6720 or 203-268-3204.

http://www.devconnections.com

1. Developer .NET Perspectives

by Bill Sheldon, [email protected]

  • Making Minor Modifications to the Community Starter Kit
  • Last month, I showed you some of the underpinnings of the ASP.NET Community Starter Kit. This kit is available in six configurations on the Microsoft ASP.NET Web site (http://www.asp.net). To fit your needs, you can customize the Community Starter Kit two ways. You can modify the existing kit's elements, or you can add elements from the ASP.NET Web site to the kit. You use the former approach when you want to make relatively minor changes and the latter approach when you want to create a custom site that's only loosely based on the starter kit's functionality.

    In this column, I want to show you how to work within the structure of the starter site. Modifying the existing elements lets you leverage the majority of the existing functionality with minimal effort. Before you start, create a copy of the Community Starter Kit's files. This copy lets you review the original code as you modify elements in the kit.

    To begin, let's modify something simple, such as changing the logo associated with the site and adjusting the content on the home page. To make these modifications, you need to use the Community Starter Kit's administration pages. Log on to the starter site application with the administrative account that was created during installation. If you've forgotten the password for this account, go to the database and open the Community_Users table. This table lists at least 19 predefined user accounts--one of which is the admin user--and their passwords. The table stores the users' passwords in clear text, which is a limitation of the kit.

    After you've logged on with the admin user account, you'll find a new menu option called Admin. Selecting this option takes you to the Admin pages. These pages run outside the scope of the underlying page templates that control the rest of the site. The Admin pages let you carry out minimal customization of your community site.

    The Admin pages let you customize several different areas in the Community Starter Kit. One of those areas is the Edit Images page. Go into this page and add a new image called MyImage.jpg. This can be any image, although I suggest an image other than your logo for demonstration purposes.

    After adding an image, return to the Admin page and select Edit Sections. The main Edit Sections page shows all the sections that make up the site. In this case, select the site's home page. After you make this selection, you have an initial option to edit the name of your home page and how the menu displays that name. However, we're more interested in editing the home page's appearance, so click Appearance. The Appearance link opens a screen with sections to edit various elements of your home page. The first item is the selected theme. I recommend that you look at several themes and decide which theme you want to base your site on, then delete the directories associated with the remaining themes. Note that because the home page is the parent page for your site, changes made at this level are inherited by all the other pages in the site. Selecting a final style is important because if you customize a template, the modifications are implemented in the subdirectory associated with that theme and that theme only. So, once you start customizing the pages, there is no sense in keeping the other themes around. For my site I selected the Professional theme.

    Next, you want to customize the section's Logo. Here you can select an image file for upload to your community site. Notice that the image you uploaded in the Edit Images page isn't selected here. Instead, you're going to upload another image to the site. Select the image you would like to use as a logo. For testing purposes, I suggest an image that's at least 200 by 200 pixels. After you provide the image filename, you can move down the customization page to the next customization control, Section Page Header. Enter the text you want to display in the content section of your home page in this control. The Section Page Header control is a companion to the Section Page Footer control, which lets you customize the bottom of the content area. Both controls let you work in regions with the functionality of Rich Text Format (RTF) text boxes.

    After you enter the text, I recommend that you use the View HTML Source check box to switch to the HTML source view. In doing so, you can add a reference to the MyImage.jpg that you uploaded earlier by entering the following "img" tag:

    <img src="http://localhost/CommunityStarterKit/MyImage.jpg">

    Switching back from the HTML source view, you should now see your image embedded alongside the text that you've entered for your updated home page. At this point, let's proceed to the bottom of the page and click the Apply Changes button to accept the changes. After the changes have been updated, return to your site's home page.

    The first item you should notice is that the updated logo is larger than the logo it replaced and has offset everything else in the page. You're going to want to resolve this problem. One option is to use a logo image that's much smaller and fits within the design area. A better option, though, is to have the browser limit the size of whatever image is being used as a logo. To do so, you need to edit the code associated with the logo control. To find the Logo class in your project files, open the Community Starter Kit project in Visual Studio .NET, then go to the Class View. Double-clicking the class will open the Code View, in which you'll see that the class has a simple implementation.

    The second of the two methods in this class is RenderLogoImage. This method transfers the logo information to the page. The RenderLogoImage method has a string that includes the "img" tag and a border property for the logo. The height and width properties for the logo are missing from the string. By adding these properties and defining the sizes appropriately, you can alter the size of the displayed logo. Because the change is made at the control level, you'll find that this change is automatically applied to your entire site.

    After you've adjusted your logo's size, return to your home page. Notice that a menu appears on the left side as well as along the bottom of the page. In addition, all the same links are reflected within the primary content for your home page.

    In looking at the home page, you might notice that the content area contains data related to the other sections that you didn't include in your Section Page area. If you search the Admin pages, you'll find that this content isn't reflected in a way that you can edit it. In short, this content is being generated based on your page type. I'll show you how to change this default content in my next column.

    In the meantime, you can check out the "Community Starter Kit Documentation." Although this documentation isn't current with the latest version of the Community Starter Kit, it's a good starting point for finding out more information about site customization. You can find this documentation at:

    http://www.asp.net/starterkits/whitepapers/community%20whitepaper.doc

    Sponsor: New Exchange Event from Windows & .NET Magazine Connections

    Windows & .NET Magazine Connections will co-locate with the brand new Exchange Connections conference from Nov 2 – 5 in Orlando, FL. Register early and you'll receive access to both events for one price! Plus you'll save $300 if you register before the Early Bird Discount expires on Sept. 15.

    Attendees to both events will have a chance to win a FREE 4 night/5 day Las Vegas Vacation including airfare for two.

    Connections promises to deliver 100% pure technical content about cutting edge technology with real world solutions that you can use in your job today. To stay competitive, you need to invest your time to keep pace with the latest technology, tips, and tricks. Connections will give you the edge. Don't let this opportunity pass you by.

    Register today and you'll get:

    • 2 Conferences for the Price of 1
    • Opportunity to win a FREE Las Vegas vacation plus other giveaways
    • Free one-year Windows & .NET Magazine subscription
    • $300 Registration discount
    Register online or call 1-800-505-1201 or 203-268-3204.
    http://www.winconnections.com

    2. Announcements
    (brought to you by Windows & .NET Magazine and its partners)

  • Special Offer from SQL Server Magazine

  • SQL Server Magazine presents the SQL Server Technical Education Package, including a 1-year print subscription to SQL Server Magazine, full SQL Server Magazine Web site access, and a 1-year subscription to the SQL Server Magazine Master CD (2 CDs), for only $39.95! Click here for this incredible limited-time offer!

    http://sqlmag.com/rd.cfm?code=pcep2139up

  • Discover Better Ways to Support and Secure Your Clients

  • Get the tools and techniques that you need to successfully manage client computers throughout an organization. Windows Client UPDATE, a weekly email newsletter from Windows & .NET Magazine, provides tips for remote management, profile management, single sign-on (SSO), registry modifications, and other administration tasks that will keep your users' systems running smoothly. Sign up for a free subscription at

    http://www.winnetmag.com/email

    Hot Release: Thawte

  • Certify Your Software Integrity
  • As a software developer you know that the product you make available on the Internet can be tampered with if it is not secured. Our Free Guide will show you how to securely distribute your code over the Internet and how these certificates operate with different software platforms:

    http://ad.doubleclick.net/clk;6078303;8369295;u

    3. Resource

  • New Visual Basic .NET Resource
  • A new development resource--VB.NET Forums--is now available to anyone interested at

    http://www.vbdotnetforums.com

    4. Event
    (brought to you by Windows & .NET Magazine)

  • New--Mobile & Wireless Road Show!
  • Learn more about the wireless and mobility solutions that are available today! Register now for this free event!

    http://www.winnetmag.com/roadshows/wireless

    5. New and Improved
    by Sue Cooper, [email protected]

  • Develop Web Sites and Applications with Style
  • Macromedia announced Dreamweaver MX 2004, software for building Web sites and applications. The software provides deep Cascading Style Sheets (CSS) support in a visual development environment, which helps separate presentation and style from content and gives you precise design control. You can create sites that require less bandwidth and are easy to maintain. Dreamweaver MX includes the MX HTML Elements, application building blocks that let you quickly deliver results with a consistent look and feel. Dreamweaver MX includes SecureFTP, dynamic cross-browser validation functionality, built-in graphics editing, seamless integration with Microsoft Word and Microsoft Excel, and updated support for ASP.NET, the PHP scripting language, and ColdFusion server technologies. Expected to ship later this month, Dreamweaver MX 2004 is priced at $199. Contact Macromedia on its Web site.

    http://www.macromedia.com

  • Tell Us About a Hot Product and Get a T-Shirt!
  • Have you used a product that changed your IT experience by saving you time or easing your daily burden? Tell us about the product, and we'll send you a Windows & .NET Magazine T-shirt if we write about the product in a future Windows & .NET Magazine What's Hot column. Send your product suggestions with information about how the product has helped you to

    [email protected]

    Sponsored Links

    Aelita Software
    Free message-level Exchange recovery web seminar October 9th
    http://ad.doubleclick.net/clk;6098474;8214395;v?http://www.aelita.com/090103updatelink

    CrossTec
    Free Download - NEW NetOp 7.6 - faster, more secure, remote support
    http://ad.doubleclick.net/clk;5930423;8214395;j?http://www.crossteccorp.com/tryit/w2k.html

    MailFrontier
    Eliminate spam once and for all. MailFrontier Anti-Spam Gateway.
    http://ad.doubleclick.net/clk;6080289;8214395;q?http://altfarm.mediaplex.com/ad/ck/2848-15512-3892-1


    6. Contact Us

  • About Developer .NET Perspectives -- [email protected]
  • About the newsletter -- [email protected]
  • About technical questions -- http://www.winnetmag.com/forums
  • About product news -- [email protected]
  • About your subscription -- [email protected]
  • About sponsoring UPDATE -- [email protected]
  • This email newsletter is brought to you by Windows & .NET Magazine, the leading publication for IT professionals deploying Windows and related technologies. Subscribe today.

    http://www.winnetmag.com/sub.cfm?code=wswi201x1z

    Copyright 2003, Penton Media, Inc.

    Hide comments

    Comments

    • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

    Plain text

    • No HTML tags allowed.
    • Web page addresses and e-mail addresses turn into links automatically.
    • Lines and paragraphs break automatically.
    Publish