Using templates?

  • Thread starter Thread starter Ayende Rahien
  • Start date Start date
A

Ayende Rahien

How do I create an ASP.NET site that uses templates?
I want to have one (or a few) template HTML files that will dictate the look
& feel of the site, and all the other pages loopking like them.
How is this done?
 
If you follow the Dreamweaver/FrontPage methodology, you can utilize
templates. Note that you will not be able to put dynamic elements in the
templated sections. With Whidbey (next version of .NET), you will have
master page capability.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
if static use an include file or apply the server controls

if dynamic read the file and replace the tokens with dynamic content, or
apply the server controls with use of dynamic variables


--
================================
http://www.ASPkey.net/
A Resource Site for Web Developers
*Free OnLine web Tools
*Free development services
================================
 
Back
Top