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

Open Source Extensible Enterprise n-tier Application Framework with Multilayered Architecture

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
3 Dec 2010MIT3 min read 37K   770   41  
Xenta architecture overview
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="DefaultMaster.Master" ClassName="Admin.ForumSettingsPage" CodeBehind="ForumSettings.aspx.cs" Inherits="SiberTek.Xenta.Web.Admin.Pages.ForumSettingsPage" %>
<%@ Register TagPrefix="ctl" TagName="ForumSettingsForm" Src="../Modules/ForumSettingsForm.ascx" %>

<asp:Content runat="server" ContentPlaceHolderID="cphPageContent">
    <div class="content-header">
        <span class="title">
            <asp:Literal runat="server" ID="lblContentTitle" />
        </span>
        <ul class="toolbar">
            <li>
                <asp:HyperLink runat="server" ID="lnkBack" SkinID="Up" />
            </li>
            <li>
                <asp:Label runat="server" ID="lblBack" AssociatedControlID="lnkBack" />
            </li>
            <li>
                <asp:HyperLink runat="server" ID="lnkHome" SkinID="Home" />
            </li>
            <li>
                <asp:Label runat="server" ID="lblHome" AssociatedControlID="lnkHome" />
            </li>
            <li class="separator"></li>
            <li>
                <asp:ImageButton runat="server" ID="btnSave" SkinID="Save" ValidationGroup="ForumSettings" />
            </li>
            <li>
                <asp:Label runat="server" ID="lblSave" AssociatedControlID="btnSave" />
            </li>
        </ul>
    </div>
    <div class="clear"></div>
    <div class="content-main">
        <asp:BulletedList runat="server" ID="lstMessageList" CssClass="message-list" DisplayMode="Text" EnableViewState="false" />
        <ctl:ForumSettingsForm runat="server" ID="frmForumSettingsForm" ValidationGroup="ForumSettings" />
    </div>
</asp:Content>

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 MIT License


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions