I need some direction on a web page
-
I want to create a web page where the left navigation bar and the content page can be changed by the end user. I started by creating a master page. While I can get the main content page to show, I cannot get the left hand nav bar to show it's content. In the mater page I created a conten place holder for the main content and one for the left hand nav bar and in my LeftNav.aspx I put in the code to create a list. However when I run the page nothing shows up in the left content place holder. Has anyone done something like this and if so can you comment on this? Thanks
Tom Wright tawright915@gmail.com
-
I want to create a web page where the left navigation bar and the content page can be changed by the end user. I started by creating a master page. While I can get the main content page to show, I cannot get the left hand nav bar to show it's content. In the mater page I created a conten place holder for the main content and one for the left hand nav bar and in my LeftNav.aspx I put in the code to create a list. However when I run the page nothing shows up in the left content place holder. Has anyone done something like this and if so can you comment on this? Thanks
Tom Wright tawright915@gmail.com
Tom Wright wrote:
content page can be changed by the end user.
what do you mean by this
Tom Wright wrote:
I cannot get the left hand nav bar to show it's content.
where is the content coming?
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
-
Tom Wright wrote:
content page can be changed by the end user.
what do you mean by this
Tom Wright wrote:
I cannot get the left hand nav bar to show it's content.
where is the content coming?
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
We have a content server where the user checks in a document. I grab the document from the content server and in the navbar content place holder use an include to mash in their links from the document.
Tom Wright tawright915@gmail.com
-
We have a content server where the user checks in a document. I grab the document from the content server and in the navbar content place holder use an include to mash in their links from the document.
Tom Wright tawright915@gmail.com
-
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="PolicySearch.master.cs" Inherits="ScholarPoliciesSearch.PolicySearch" %> <!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>Untitled Page</title> <asp:ContentPlaceHolder ID="head" runat="server"> </asp:ContentPlaceHolder> <link href="Styles/Stylesheet.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="form1" runat="server" action="javascript:fxSearch();"> <div id="HeaderContent"> </div> <div id="mainContent"> <asp:ContentPlaceHolder ID="MainContent" runat="server"> </asp:ContentPlaceHolder> </div> <div id="LeftNavBar"> <asp:ContentPlaceHolder ID="leftNavBar" runat="server"> </asp:ContentPlaceHolder> </div> <div id="FooterContent"> </div> </form> </body> </html>
Tom Wright tawright915@gmail.com