|
rubyaim -> RE: How do I call up the same 20 pages ? (1/22/2007 23:29:23)
|
Do you work in design view, or code view, or between both? Are you comfortable using find and replace in code view? The actual calendar could be pulled out of the page and kept as a separate file. This would then be used as an include. Introduction to Includes and Using FrontPage Includes Basically you would start a new page, and copy your calendar to it. Save it something like calendar.htm You would then go to one of the pages that shows the calendar, delete everything out of the cell that holds it, and then include your calendar.htm file instead (for FP2003 >Insert >Web Component >Included Content >Page ) When in code view, it would like something like: <td valign="top" width="202" height="669" background="table_lines.gif">
<!--webbot bot="Include" U-Include="calendar.htm" TAG="BODY" --> </td> This way, you will only ever have to update calendar.htm and the update will appear on whatever page it is included in. If you don't have FP Extensions you can still use FP includes and just FTP every page the include used on. If you are not keen on that then you can use one of the other includes. The benefit of FP includes if you are just starting is that you can see the included content in design view.
|
|
|
|