Welcome   |   ASP.NET   |   Web Services   |   How Do I...?   |   Class Browser   
  |   Font Size...      

masterpages_vb\Site3.master

<%@ master language="VB" %>

<script runat="server">
          
    Public Property FooterText() As String
        Get
            return Footer.Text
        End Get
        Set(ByVal value As String)
            Footer.Text = value
        End Set
    End Property
    
</script>

<html>
<head runat="server">
  <link rel="stylesheet" href="StyleSheet.css" type="text/css" />
</head>
<body>
<form id="Form1" runat="server">
    <div>
        <table class="main" cellspacing="0" cellpadding="2">
              <tr  class="header">
                  <td colspan="2" class="header"/>
              </tr>
               <tr valign="top">
                <td class="sidebar" rowspan="2">
                    <a id="A1" href="pages/daffodil.aspx" runat="server">Daffodil</a><br/>
                    <a id="A2" href="pages/rose.aspx" runat="server">Rose</a><br/>
                    <a id="A3" href="pages/dahlia.aspx" runat="server">Dahlia</a><br/>
                    <a id="A4" href="pages/hydrangea.aspx" runat="server">Hydrangea</a><br/>
                    <a id="A5" href="pages/daisy.aspx" runat="server">Daisy</a><br />
                </td>
                <td class="body">
                    <asp:contentplaceholder id="FlowerText" runat="server">
                          <h3>Welcome to my florist website!</h3>
                          We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide.  Let us handle all you gardening needs!
                    </asp:contentplaceholder>
                    <br /><br />
                    <asp:contentplaceholder id="FlowerPicture" runat="server">
                        <asp:Image ID="Image1" AlternateText="Water Lillies" ImageUrl="./Images/Waterlilies.jpg" runat="server"/>
                    </asp:contentplaceholder>
                    <br /><br />
                    <asp:adrotator id="MyAdRotator" advertisementfile="Ads.xml" runat="server"/>
                </td>
            </tr>
            <tr>
                <td class="footer">
                    <asp:label id="Footer" font-italic="true" text="Copyright Microsoft 2003" runat="server" />
                </td>
            </tr>
        </table>
    </div>
</form>
</body>
</html>