19 lines
722 B
Plaintext
19 lines
722 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Bootstrap.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="C_TRACK.About" %>
|
|
|
|
<%@ Register Src="~/WebUserControls/cmp_about.ascx" TagPrefix="uc1" TagName="cmp_about" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header text-center text-uppercase py-1">
|
|
<b>Informazioni Applicazione</b>
|
|
</div>
|
|
<div class="card-body">
|
|
<uc1:cmp_about runat="server" ID="cmp_about" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|