Click here to Skip to main content
15,886,518 members
Articles / Web Development / ASP.NET

A Task Management System using Three Layer Architecture

,
Rate me:
Please Sign up or sign in to vote.
4.27/5 (15 votes)
9 Apr 2010CPOL5 min read 64.3K   3.5K   54  
This describes a three Layer Architecture with examples
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="CommonMasterPage.master.cs" Inherits="Master_CommonMasterPage" %>

<!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 id="Head1" runat="server">
    <title>Untitled Page</title>
    <link href="../App_Themes/Theme/StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div >
    <div id="headerContainer">
    <asp:Label ID="Label1" runat="server" Text="Welcome To Task Management System" Font-Bold="True" Font-Size="XX-Large" ForeColor="DarkBlue" Width="566px" Font-Underline="True" BackColor="Transparent" style="z-index: 100; left: 190px; position: absolute; top: 52px"></asp:Label>
                    &nbsp; &nbsp;&nbsp;&nbsp;<br />
        &nbsp; &nbsp;&nbsp;
                    <asp:Label ID="Label3" runat="server" Font-Bold="True" Text=" Issue Tracking System For Your Enterprise"
                        Width="294px" style="z-index: 101; left: 319px; position: absolute; top: 90px"></asp:Label>
        <asp:Label ID="userIdLabel" runat="server" Style="clear: left; z-index: 102; left: 11px;
            float: left; position: absolute; top: 118px" Width="410px"></asp:Label>
        <asp:HyperLink ID="logoutHyperLink" runat="server" NavigateUrl="~/UI/Login/Login.aspx"
            Style="z-index: 104; left: 719px; position: absolute; top: 122px" Width="46px">Logout</asp:HyperLink>
    </div>
    <div id="extraContainer">
    <div id="menuContainer">
        <asp:Menu ID="adminMenu" runat="server" Width="141px" BackColor="#B5C7DE" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284E98" StaticSubMenuIndent="10px">
            <StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
            <DynamicHoverStyle BackColor="#284E98" ForeColor="White" />
            <DynamicMenuStyle BackColor="#B5C7DE" />
            <StaticSelectedStyle BackColor="#507CD1" />
            <DynamicSelectedStyle BackColor="#507CD1" />
            <DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
            <Items>
                <asp:MenuItem NavigateUrl="~/UI/SuperAdminMain.aspx" Text="Home" Value="Home"></asp:MenuItem>
                <asp:MenuItem Text="Admin" Value="New Item">
                    <asp:MenuItem Text="Create Admin" Value="Create Admin" NavigateUrl="~/UI/CreateAdmin.aspx"></asp:MenuItem>
                    <asp:MenuItem Text="Remove Admin" Value="Remove Admin" NavigateUrl="~/UI/RemoveAdmin.aspx"></asp:MenuItem>
                </asp:MenuItem>
                <asp:MenuItem Text="User" Value="New Item">
                    <asp:MenuItem Text="Create User" Value="Create User" NavigateUrl="~/UI/CreateUser.aspx"></asp:MenuItem>
                    <asp:MenuItem Text="Remove User" Value="Remove User" NavigateUrl="~/UI/RemoveUser.aspx"></asp:MenuItem>
                </asp:MenuItem>
                <asp:MenuItem Text="Employee" Value="New Item">
                    <asp:MenuItem Text="Create Employee" Value="Create Employee" NavigateUrl="~/UI/CreateEmployee.aspx"></asp:MenuItem>
                </asp:MenuItem>
            </Items>
            <StaticHoverStyle BackColor="#284E98" ForeColor="White" />
        </asp:Menu>
        <asp:Menu ID="SuperAdminMenu" runat="server" Width="141px" BackColor="#B5C7DE" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284E98" StaticSubMenuIndent="10px">
            <StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
            <DynamicHoverStyle BackColor="#284E98" ForeColor="White" />
            <DynamicMenuStyle BackColor="#B5C7DE" />
            <StaticSelectedStyle BackColor="#507CD1" />
            <DynamicSelectedStyle BackColor="#507CD1" />
            <DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
            <Items>
                <asp:MenuItem Text="Home" Value="Home"></asp:MenuItem>
                <asp:MenuItem Text="Project" Value="Project">
                    <asp:MenuItem Text="Create Project" Value="Create Project" NavigateUrl="~/UI/CreateProject.aspx"></asp:MenuItem>
                </asp:MenuItem>
                <asp:MenuItem Text="Task" Value="Task">
                    <asp:MenuItem Text="Create Task" Value="Create Task" NavigateUrl="~/UI/CreateTask.aspx"></asp:MenuItem>
                </asp:MenuItem>
            </Items>
            <StaticHoverStyle BackColor="#284E98" ForeColor="White" />
        </asp:Menu>
    
    </div>
    <div id="contentContainer1">
       
         <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
        </asp:contentplaceholder>
        
       
    </div>
    </div>
    <div id="footerContainer">      
                    <strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Copyright 3D</strong>   
    </div>
    </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Waveroamer Solutions, Advanced ERP(BD) LTD
Bangladesh Bangladesh
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
Software Developer WaveRoamer Solution Ltd
Bangladesh Bangladesh
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions