Question : ASP.net Missing something?!?!

for the life of me i can't get anything on my master page file to show up correctly in a browser.  everything looks fine(for the most part) in the design view in VS 2008. Help
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Reports.master.cs" Inherits="Reports" %>

<!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>GPWAS</title>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
    <style type="text/css">
        .style1
        {
            font-size: x-small;
        }
        .style2
        {
            text-align: center;
        }
        .style3
        {
            color: #CC3300;
            font-size: xx-large;
        }
    </style>
</head>
<body text="GPWAS">
    <form id="master" runat="server" title="GPWAS">
    <div>
        <h1 class="style2" style="width: 86px">
            <asp:Image ID="Image1" runat="server" ImageUrl="http://k3computing.gpmicro.com/admin/dogicon.jpg"
                Style="text-align: center" />&nbsp;
            <div style="position: absolute; width: 676px; height: 17px; z-index: 1; top: 62px; right: 14px;
                    left: 782px;" id="layer2">
                    <asp:LoginStatus ID="LoginStatus2" runat="server" />
                </div>
            <div style="position: absolute; width: 1357px; height: 47px; z-index: 1; left: 100px;
                top: 12px;" id="layer1" class="style2">
                <span class="style3">GP Micro Web Administration Suite</span>
            </div>
            <div>
                <div id="layer3" style="position: absolute; width: 764px; height: 15px; z-index: 2;
                    left: 13px; top: 65px">
                    <asp:Menu ID="Menu1" runat="server" BackColor="#F7F6F3" DynamicHorizontalOffset="2"
                        Font-Names="Verdana" Font-Size="0.8em" ForeColor="#7C6F57" Orientation="Horizontal"
                        StaticSubMenuIndent="10px" Style="text-align: right">
                        <DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />
                        <DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
                        <DynamicMenuStyle BackColor="#F7F6F3" />
                        <DynamicSelectedStyle BackColor="#5D7B9D" />
                        <Items>
                            <asp:MenuItem Text="Summary" Value="Summary" NavigateUrl="~/Default.aspx"></asp:MenuItem>
                            <asp:MenuItem Text="Reports" Value="Reports" NavigateUrl="~/Report.aspx"></asp:MenuItem>
                            <asp:MenuItem Text="Administration" Value="Administration" NavigateUrl="~/Admin.aspx">
                            </asp:MenuItem>
                        </Items>
                        <StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />
                        <StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
                        <StaticSelectedStyle BackColor="#5D7B9D" />
                    </asp:Menu>
                </div>
            </div>
    </div>
    <h3 class="style2" align="center">
        <span class="style1">
            <asp:ContentPlaceHolder ID="MainContent" runat="server">
                <p align="center" class="style3" style="text-align: center; font-family: Script;
                    font-size: xx-large; color: #FF0000; text-decoration: blink; position: absolute;
                    width: 1332px; height: auto; top: 98px; right: 9px; bottom: 179px; left: 12px;">
                    Coming Soon
                </p>
            </asp:ContentPlaceHolder>
            <h4 style="font-size: xx-small; text-align: center">
            © GPmicro, Inc. 2010</span>
    </h4>
    </form>
</body>
</html>
Attachments:
 
as shown in VS
as shown in VS
 
 
as shown in browser
as shown in browser
 

Answer : ASP.net Missing something?!?!

Is the target form already open?  If not, then create an instance:

    FormX frmX  = new FormX();
    frmX.Show();

Otherwise you'll need a reference to the already open form so you can bring it to the front and focus it...
Random Solutions  
 
programming4us programming4us