CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
web_forms
getting_started
data_presentation_controls
dotnetnuke
data_access-sql_server_sql_server_express_and_sqldatasource_control
security
client_side_web_development
novell-support-groupwise-6x-clients
data_access-data_access_and_objectdatasource_control
asp-net_ajax-asp-net_ajax_control_toolkit
novell-support-netware-6x-install-upgrade
asp-net_ajax-asp-net_ajax_discussion_and_suggestions
novell-support-netware-6x-administration-tools
master_pages_themes_and_navigation_controls
configuration_and_deployment
novell-support-netware-client-winnt-2x-xp
novell-support-groupwise-7x-clients
asp-net_ajax-asp-net_ajax_ui
novell-support-edirectory-netware
community-free_for_all
visual_studio_2005
novell-support-groupwise-6x-install-setup
data_access-xml_and_xmldatasource_control
control-cancel
novell-support-iprint
advanced_asp-net-crystal_reports
data_access-xml_web_services
microsoft-public-access
novell-community-chat
state_management
novell-support-netware-6x-abends-hangs
dotnetnuke-getting_started
novell-support-groupwise-6x-gwia
-net_languages-c
novell-support-identity-manager-engine-drivers
novell-support-groupwise-discontinued
advanced_asp-net-architecture
opensuse-org-suse-linux-support-install-configure-administration
dotnetnuke-custom_modules
novell-support-groupwise-7x-install-setup-admin
novell-support-netware-6x-storage-media
novell-support-groupwise-6x-agents
installation_and_setup
data_access-access_databases_and_accessdatasource_control
windows-hosting_open_forum
visual_web_developer_2005_express
novell-support-groupwise-6x-web-access
novell-support-netware-6x-server-backup
macromedia-dreamweaver
novell-support-netware-5x-administration-tools
novell-support-ifolder
novell-support-bordermanager-install-setup
novell-support-imanager
microsoft-public-dotnet-framework-aspnet
novell-support-netware-5x-install-upgrade
novell-support-cluster-services
novell-support-bordermanager-proxies
novell-support-newsflash
advanced_asp-net-sql_server_reporting_services
microsoft-public-dotnet-languages-csharp
web_parts_and_personalization
about_this_site-feedback_on_this_website
ibm-software-websphere-portal-server
novell-support-netware-dns-dhcp
novell-support-zenworks-desktops-4x-app-launcher
-net_languages-visual_basic_-net
advanced_asp-net-custom_server_controls
novell-support-bordermanager-vpn
novell-support-ndps-neps
microsoft-public-sqlserver-programming
novell-support-netware-webserver
community-jobs
novell-support-netware-4x
advanced_asp-net-mobile_and_handheld_devices
internet_explorer_web_controls
novell-support-zenworks-desktops-4x-install-setup
novell-support-edirectory-linux
novell-support-groupwise-7x-gwia
development_tools-web_matrix_general_discussions
microsoft-public-access-formscoding
macromedia-flash
community-announcements
portal_starter_kit
novell-support-zenworks-desktops-4x-management-agent
novell-support-zenworks-patch-management
novell-support-native-file-access
microsoft-public-access-queries
microsoft-public-access-forms
novell-support-groupwise-7x-web-access
novell-support-netware-small-business-6x
data_access-active_directory_and_ldap
novell-support-edirectory-windows
novell-support-groupwise-7x-agents
novell-support-ichain
data_access-oracle
novell-support-zenworks-desktop-management-6x-imaging
novell-support-groupwise-7x-wireless
novell-support-netware-5x-abends-hangs
advanced_asp-net-localization
novell-support-zenworks-desktop-management-7x-imaging-server-nw-win




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: Date Entered: 1/3/2007 4:31:38 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 9 Views: 88 Favorited: 0 Favorite
10 Items, 1 Pages 1 |< << Go >> >|
"edwards53225"
NewsGroup User
Master Page Control Error1/3/2007 4:31:38 PM

0

I have created a Master Page with navigation ane when I try and view this page in the browser I am receiving the following error message:

  Control 'ctl00_Menu1' of type 'Menu' must be placed inside a form tag with runat=server.

Can someone please tell me what this means and how do I fix it?  Thanks in advance for all of your help. 

 

"TOMCIO" <>
NewsGroup User
Re: Master Page Control Error1/3/2007 4:42:09 PM

0

it means that you have to put contetn of your page between "form" tag.

Add this line after<body>

 <form id="form1" runat="server">

here your HTML

close form tag here

</form>

</body>


Tom | NMGroup.net
1&1 Hosting | WebHost4life | CrystalTech
"edwards53225"
NewsGroup User
Re: Master Page Control Error1/3/2007 5:28:33 PM

0

Thank you so much, but that just lead to another error:

Parser Error Message: The server tag is not well formed.

Line 23: <form id="Form1" method="post"runat="server">

Any suggestions?

"TOMCIO" <>
NewsGroup User
Re: Master Page Control Error1/3/2007 5:59:30 PM

0

<

form id="form1" runat="server"> - will work

OR in your code you need space between "post" SPACE HERE runat="server"


Tom | NMGroup.net
1&1 Hosting | WebHost4life | CrystalTech
"edwards53225"
NewsGroup User
Re: Master Page Control Error1/3/2007 6:13:05 PM

0

Thanks, but that puts me back at the original error message.
"TOMCIO" <>
NewsGroup User
Re: Master Page Control Error1/3/2007 7:09:00 PM

0

post your code
Tom | NMGroup.net
1&1 Hosting | WebHost4life | CrystalTech
"edwards53225"
NewsGroup User
Re: Master Page Control Error1/3/2007 7:20:45 PM

0

Here goes...

 

<

head>

<title>Welcome To Lakeshore Medical Clinics Intranet</title>

<

script language="javascript" type="text/javascript">

// <!CDATA[

function

IMG1_onclick() {

}

function

TABLE1_onclick() {

}

// ]]>

</

script>

</

head>

<

body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/layout_01.gif" style="background-color: white">

<

form id="Form1" method="post" runat="server">

</

form>

<!-- ImageReady Slices (layout.psd) -->

<

div align="left">

<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%">

<tr>

<td colspan="2" style="height: 76px">

<img src="images/shore.gif" style="width: 160px; height: 88px" />

<img src="images/lmc.gif" style="width: 536px; height: 32px" /></td>

</tr>

<tr>

<td colspan="2" style="height: 47px; background-color: maroon">

<asp:Menu ID="Menu1" runat="server" Font-Bold="True" Font-Italic="False" Font-Names="Calisto MT"

Font-Size="Medium" ForeColor="White" Orientation="Horizontal" PathSeparator="|">

<Items>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Home" Value="Home"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Administration" Value="Administration">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="CBO" Value="CBO"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Coding/QI" Value="Coding/QI">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="DMAR" Value="DMAR"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Finance" Value="Finance">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Human Resources" Value="Human Resources">

<asp:MenuItem Text="Forms" Value="Forms"></asp:MenuItem>

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="IS" Value="IS"></asp:MenuItem>

<asp:MenuItem Text="Operations" Value="Operations"></asp:MenuItem>

</Items>

</asp:Menu>

</td>

</tr>

<tr>

<td style="width: 13px; height: 567px" valign="top">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">

&nbsp;<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</asp:ContentPlaceHolder>

</asp:Panel>

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

 

</td>

<td style="width: 82px; height: 567px; background-color: gainsboro" valign="top">

</td>

</tr>

<tr>

<td colspan="2" style="height: 37px; background-color: maroon; font-weight: bold; font-size: 24pt; color: white; font-style: italic; font-family: 'Times New Roman';" valign="bottom">

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp;

</td>

</tr>

</table>

</

div>

<!-- End ImageReady Slices -->

</

body>

</

html>
"edwards53225"
NewsGroup User
Re: Master Page Control Error1/3/2007 7:23:26 PM

0

Here goes...

 

<

head>

<title>Welcome To Lakeshore Medical Clinics Intranet</title>

<

script language="javascript" type="text/javascript">

// <!CDATA[

function

IMG1_onclick() {

}

function

TABLE1_onclick() {

}

// ]]>

</

script>

</

head>

<

body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/layout_01.gif" style="background-color: white">

<

form id="Form1" method="post" runat="server">

</

form>

<!-- ImageReady Slices (layout.psd) -->

<

div align="left">

<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%">

<tr>

<td colspan="2" style="height: 76px">

<img src="images/shore.gif" style="width: 160px; height: 88px" />

<img src="images/lmc.gif" style="width: 536px; height: 32px" /></td>

</tr>

<tr>

<td colspan="2" style="height: 47px; background-color: maroon">

<asp:Menu ID="Menu1" runat="server" Font-Bold="True" Font-Italic="False" Font-Names="Calisto MT"

Font-Size="Medium" ForeColor="White" Orientation="Horizontal" PathSeparator="|">

<Items>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Home" Value="Home"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Administration" Value="Administration">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="CBO" Value="CBO"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Coding/QI" Value="Coding/QI">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="DMAR" Value="DMAR"></asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Finance" Value="Finance">

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Human Resources" Value="Human Resources">

<asp:MenuItem Text="Forms" Value="Forms"></asp:MenuItem>

</asp:MenuItem>

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="IS" Value="IS"></asp:MenuItem>

<asp:MenuItem Text="Operations" Value="Operations"></asp:MenuItem>

</Items>

</asp:Menu>

</td>

</tr>

<tr>

<td style="width: 13px; height: 567px" valign="top">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">

&nbsp;<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</asp:ContentPlaceHolder>

</asp:Panel>

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

 

</td>

<td style="width: 82px; height: 567px; background-color: gainsboro" valign="top">

</td>

</tr>

<tr>

<td colspan="2" style="height: 37px; background-color: maroon; font-weight: bold; font-size: 24pt; color: white; font-style: italic; font-family: 'Times New Roman';" valign="bottom">

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp;

</td>

</tr>

</table>

</

div>

<!-- End ImageReady Slices -->

</

body>

</

html>
"TOMCIO" <>
NewsGroup User
Re: Master Page Control Error1/3/2007 7:34:40 PM

0

here is what you do:

<form id="Form1" method="post" runat="server">

HTML SHOULD BE HERE 

</form>

you put your HTM here - ERROR NOT HERE


Tom | NMGroup.net
1&1 Hosting | WebHost4life | CrystalTech
"dbryant@vertic
NewsGroup User
Re: Master Page Control Error1/3/2007 7:43:14 PM

0

Try it like this with the Form closing tag put after the controls.

 

<

form id="Form1" method="post" runat="server">

<!-- ImageReady Slices (layout.psd) -->

<

div align="left">

 

<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%">

 

<tr>

 

<td colspan="2" style="height: 76px">

 

<img src="images/shore.gif" style="width: 160px; height: 88px" />

 

<img src="images/lmc.gif" style="width: 536px; height: 32px" /></td>

 

</tr>

 

<tr>

 

<td colspan="2" style="height: 47px; background-color: maroon">

 

<asp:Menu ID="Menu1" runat="server" Font-Bold="True" Font-Italic="False" Font-Names="Calisto MT"

 

Font-Size="Medium" ForeColor="White" Orientation="Horizontal" PathSeparator="|">

 

<Items>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Home" Value="Home"></asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Administration" Value="Administration">

 

</asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="CBO" Value="CBO"></asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Coding/QI" Value="Coding/QI">

 

</asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="DMAR" Value="DMAR"></asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Finance" Value="Finance">

 

</asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="Human Resources" Value="Human Resources">

 

<asp:MenuItem Text="Forms" Value="Forms"></asp:MenuItem>

 

</asp:MenuItem>

 

<asp:MenuItem SeparatorImageUrl="~/images/greydot.gif" Text="IS" Value="IS"></asp:MenuItem>

 

<asp:MenuItem Text="Operations" Value="Operations"></asp:MenuItem>

 

</Items>

 

</asp:Menu>

 

</td>

 

</tr>

 

<tr>

 

<td style="width: 13px; height: 567px" valign="top">

 

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">

 

&nbsp;<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</asp:ContentPlaceHolder>

 

</asp:Panel>

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;

 

 

</td>

 

<td style="width: 82px; height: 567px; background-color: gainsboro" valign="top">

 

</td>

 

</tr>

 

<tr>

 

<td colspan="2" style="height: 37px; background-color: maroon; font-weight: bold; font-size: 24pt; color: white; font-style: italic; font-family: 'Times New Roman';" valign="bottom">

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

 

&nbsp; &nbsp; &nbsp;

 

</td>

 

</tr>

 

</table>

</

div>

<!-- End ImageReady Slices -->

 </

form>

 </

body>

</

html>


Dan Bryant
10 Items, 1 Pages 1 |< << Go >> >|


Free Download:













how to make backcolor to a menu item and its sub-menus in asp:menu control?

link in a menu

menu is incorrectly rendered when viewed from ie 5.0

how to asign text to a label in master page from content page?

using themes

wizard inside a contentplaceholder inside a master page

hellp me in use master page

add to the web.sitemap programmatically

masterpages and modal dialog boxes.

are login controls ok in masterpages?

theme design tools

image references on masterpages

dynamically add javascript link

how to avoid asp.net menu overlapping...

asp.net menu control in a master page layout

header content and footer

programatically changing styles / themes

scraped php and master page that displays improperly

how to relate a stylesheet to an contentplaceholder?

help with creating dynamic menu controls using xslt and xmldatasource

resizing a new window opened from a menu control.

ajax, masterpage, and dynamic content

caching issues

how to replicate the msdn web site structure

change theme dynamically using dropdown

erratic behavior of menu

dynamic controls and masterpage problem

cutom sitemapprovider and sitemappath don't work together

sitemap question

master page menu

accessing child controls from master page

display plus(+) and minus(-) sign for treenodes in a treeview in .net framework version 2.0

transfer variable and raise event from masterpage to default page

c# code in master pager?

iterate hotspot collection?

dynamic loading of master pages

browser-specific master pages issue

page and usercontrol to use value from masterpage

root master page and re-use root master page in child project

how to apply a template

sitemappath, multilanguage, web.sitemap and virtual directories

how to: configure multiple site maps

filling a treeview recursively with data from a sqldatasource

sharing themes cross application

old css caught in cache

asp.net 2.0 menu control configuration

asp:menu highlights all (to largest element) but only the text portion of each drop-down element is an active link

need to access a label control on the master page from a user control attached to a content page

menu control help needed

forms in master pages

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT