Master Pages MacDonald Ch. 13 MIS 324 MIS 324 Professor Sandvig Professor Sandvig.

Slides:



Advertisements
Similar presentations
Main Title Here Additional copy here, additional copy here, additional copy here, additional copy here, additional copy here. ADD YOUR WEB ADDRESS HERE.
Advertisements

Master Pages, User Controls, Site Maps, Localization Svetlin Nakov Telerik Corporation
MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Asp.NET Page Composition. Slide 2 Lecture Overview Work with master pages and content pages.
 CSS ids  Pages  Sites  HTML: class=“name”  Names may define format OR content › Either works  CAN apply multiple classes to the same tag  Multiple.
User Controls MacDonald pp MIS 324 MIS 324 Professor Sandvig Professor Sandvig.
Power Point Professor Pepper Why?  Make presentations to someone  Make self guided presentations –Mail –Internet  Present on a screen, overheads or.
Navigation Controls MacDonald Ch. 11 MIS 424 MIS 424 Professor Sandvig Professor Sandvig.
Chapter 8 Working on a Presentation. Formatting and Editing Formatting Layouts Formatting Text Slide Master Graphics Header and Footer Slide Transitions.
Master Slide. Why Create a Master Slide Allows you to create slide layouts EXACTLY how you want it Keep things consistent from one slide to the next Save.
Best Practices for UI with ASP.NET 2.0 Jeff King Program Manager Web Platform and Tools Microsoft Corporation.
Tutorial 1: Getting Started with HTML5
Madeline Conley. * Slide Master creates a unified layout that applies to your presentation as a whole * You can add titles, pages numbers, dates, headers,
1 Designing & Developing Web- Based Solutions in ASP.NET Week 2 Themes & Master Pages.
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
Robert Vitolo CS430.  CSS (Cascading Style Sheets)  Purpose: To provide a consistent look and feel for a set of web pages To make it easy to update.
Ch6:creating consistent looking web sites. Master pages Master page defines a combination of fixed content and content place holder to hold the web page(.aspx)
Lesson 4: Using HTML5 Markup.  The distinguishing characteristics of HTML5 syntax  The new HTML5 sectioning elements  Adding support for HTML5 elements.
11 HTML5 sharing St Bonaventure College & High School 31 May 2012.
Microsoft FrontPage 2003 Illustrated Complete Using a Dynamic Web Template.
IT204 - Web Scripting and Authoring I Introduction to Dreamweaver Unit 6.
Cascading Style Sheets Class 2, Lecture 3 Rachel A Ober
Working with Templates Lesson 6. Skills Matrix SKILL #MATRIX SKILL 1.1.1Work with templates 1.1.6Insert blank pages or cover pages.
Pasewark & Pasewark 1 PowerPoint Lesson 2 Creating and Enhancing PowerPoint Presentations Microsoft Office 2007: Introductory.
Louisa Lambregts, Louisa Lambregts
Course ILT Building custom presentations Unit objectives Modify the designs in a template Build a custom template from a blank presentation, and add graphic.
Crazy New CSS Tools MIS 424 MIS 424 Professor Sandvig Professor Sandvig.
CSE 409 – Advanced Internet Technology Today you will learn  Styles  Themes  Master Pages Themes and Master Pages.
WikiPlus Configurations Configure WikiPlus elements to your needs.
CSCI 6962: Server-side Design and Programming Facelets and User Interface Design.
Exploring Microsoft Microsoft FrontPage Chapter 21 Exploring Microsoft FrontPage 2002 Chapter 1 Creating a Home Page: Introduction to MS FrontPage.
Unit 2, Lesson 7 Creating Web Pages and Web Documents.
More PowerPoint. Re-using your slides You can re-use your slides in different presentation. Choose Insert, Slides from Files Browse to locate the presentation.
ASP.NET Rehab AlFallaj. Manualy type the following code for iframe tag in the aspx source code.
Adxstudio Portals Training
Data Listing Web Controls MacDonald Ch MIS 324 MIS 324 Professor Sandvig Professor Sandvig.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
1111 Master Pages Beginning ASP.NET in C# and VB Chapter 6.
Unit 5 The Web Book Test. Unit 5 Test The Web Book Test 1. On the bottom of page 46, why is writing web pages not like writing printed documents ?
Adding Reports to a Database. Why do we use Reports? Reports are well-designed printed pages that offer several advantages: Reports are well-designed.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, we’ll cover:  Brief CSS review  Creating sections with the tag  Creating inline.
COMP 143 Web Development with Adobe Dreamweaver CC.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
An Animated PowerPoint Template Staying on Track.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
Making the Most of Search in SharePoint 2013 Christina Wheeler.
Create and edit web pages 4
Exploring Microsoft Office PowerPoint 2000 Chapter 2
Objectives Design a form Create a form Create text fields
Styles with Cascading Style Sheets (CSS)
© 2016, Mike Murach & Associates, Inc.
Conference Presentation Template
How to use this template
Google Fonts Selective Formatting
Your Goals and Objectives
Layout and Partial Views
Lesson 21 Getting Started with PowerPoint Essentials
An Animated PowerPoint Template
MIS Professor Sandvig MIS 324 Professor Sandvig
PowerPoint Lesson 2 Creating and Enhancing PowerPoint Presentations
What is HTML?.
Your Presentation Name
Menu.
Layout and Partial Views
Common Page Design Elements
Your Presentation Name
Entity Framework & LINQ (Language Integrated Query)
Refined14ReportPowerpointTopic templates
Monday, Sept. 24 Today we are going to update the html code to html5. It has some new features that we have not covered yet.
Presentation transcript:

Master Pages MacDonald Ch. 13 MIS 324 MIS 324 Professor Sandvig Professor Sandvig

Outline 1. Why Master Pages? 2. Syntax 3. Example

Benefits of Master Pages  Create a template for site layout Defined in one place, rather than each page Defined in one place, rather than each page  Include “Placeholders” for page-specific content  Individual pages inherit layout from master  Eliminates last place where code was duplicated

Syntax  Create master page.master extension.master extension Directive: Directive: Include common content Include common content headers, footers, menus, layout, etc.headers, footers, menus, layout, etc. Include placeholder controls for page content Include placeholder controls for page content

Syntax .aspx pages Reference master page in page directive Reference master page in page directive Include “content” controls Include “content” controls Provides contentProvides content Map to placeholders in.master pageMap to placeholders in.master page

VS Support

Syntax  Default Content Include in master page Include in master page Used when.aspx page does not provide content. Used when.aspx page does not provide content. Example: Example: Florist: default.aspxFlorist: default.aspxdefault.aspx Source: masterPage.master.txt, daisy.aspx.txtSource: masterPage.master.txt, daisy.aspx.txtmasterPage.master.txtdaisy.aspx.txtmasterPage.master.txtdaisy.aspx.txt

MasterPages: Other Features  Nesting Sub-masters inherit from.master Sub-masters inherit from.master Add more placeholders Add more placeholders  Programmatic access to master page Change items from.aspx page Change items from.aspx page meta tagsmeta tags style sheet …style sheet …  Navigation Controls Extensive integration with MasterPages Extensive integration with MasterPages Page titles, formatting, etc.Page titles, formatting, etc.  Example: ISC web site ISC

Summary  Master Pages Handy new feature Handy new feature Easy to use Easy to use