How To Do Everything With Microsoft Expression Web
Home
Chapter 8
Chapter 9
Chapter 10
Chapter 11
Chapter 12
Chapter 13
Chapter 14
Chapter 15
Chapter 16
Contact
This example uses ASP.NET controls to calculate the width and height of a rectangle.
Download
the .aspx page code for this example
Master Page process.
site.master page with the basic code
<%@ Master Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Literary Genius</title> <link rel="stylesheet" type="text/css" href="stylesheet.css" /> </head> <body> <div id="wrapper"> <form id="Form1" runat="server"> <div id="header"> <span class="title">Literary Genius</span> <span class="breadcrumb">Todo: Breadcrumb will go here...</span> </div> <div id="content"> <asp:ContentPlaceHolder ID="MainContent" runat="server"> </asp:ContentPlaceHolder> </div> <div id="navigation"> Todo: Menu will go here... </div> </form> </div> <div id="footer"> <a href="http://rickleinecker.com/HTDE">How To Do Everything With Expression Web 2</a> </div> </body> </html>
Download
entire Master Page project
Download
sample database