<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ProjectTree.aspx.cs" Inherits="_Default" %> <!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>Portfolio Projects</title> <link rel="shortcut icon" href="favicon.ico"> </head> <body background="Images/CFBC-logo2.gif"> <form id="form1" runat="server"> <div> <asp:TreeView ID="portfolioProjects" Runat="Server" EnableClientScript="true" PopulateNodesFromClient="true" ExpandImageUrl="Images/closed.gif" CollapseImageUrl="Images/open.gif" OnTreeNodePopulate="Node_Populate" ExpandDepth="1"> <Nodes> <asp:TreeNode Text="PPS Click-through Tutorial" NavigateUrl="training/index.htm" ToolTip="PPS Click-through Tutorial" Target="newWindow"/> <asp:TreeNode Text="2007" PopulateOnDemand=True SelectAction=Expand Value="2007" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2008" PopulateOnDemand=True SelectAction=Expand Value="2008" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2009" PopulateOnDemand=True SelectAction=Expand Value="2009" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2010" PopulateOnDemand=True SelectAction=Expand Value="2010" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2011" PopulateOnDemand=True SelectAction=Expand Value="2011" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2012" PopulateOnDemand=True SelectAction=Expand Value="2012" ShowCheckBox="False" Expanded="False"/> <asp:TreeNode Text="2013" PopulateOnDemand=True SelectAction=Expand Value="2013" ShowCheckBox="False"/> </Nodes> <ParentNodeStyle Font-Bold="False" /> <HoverNodeStyle Font-Underline="True" ForeColor="#DD5555" /> <SelectedNodeStyle Font-Underline="True" ForeColor="Blue" HorizontalPadding="0px" VerticalPadding="0px" /> <NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="0px" NodeSpacing="0px" VerticalPadding="0px" /> </asp:TreeView> </div> </form> </body> </html>