56 lines
2.4 KiB
Plaintext
56 lines
2.4 KiB
Plaintext
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="WebLCP.SiteMaster" %>
|
|
|
|
<%@ Register Src="~/WUC/cmp_header.ascx" TagPrefix="uc1" TagName="cmp_header" %>
|
|
<%@ Register Src="~/WUC/cmp_footer.ascx" TagPrefix="uc1" TagName="cmp_footer" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="it">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ADMODEL</title>
|
|
|
|
<asp:PlaceHolder runat="server">
|
|
<%: Scripts.Render("~/bundles/modernizr") %>
|
|
</asp:PlaceHolder>
|
|
|
|
<webopt:BundleReference runat="server" Path="~/Content/css" />
|
|
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
|
|
</head>
|
|
<body>
|
|
<form runat="server">
|
|
<asp:ScriptManager runat="server">
|
|
<Scripts>
|
|
<%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%>
|
|
<%--Framework Scripts--%>
|
|
<asp:ScriptReference Name="MsAjaxBundle" />
|
|
<asp:ScriptReference Name="jquery" />
|
|
<asp:ScriptReference Name="bootstrap" />
|
|
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
|
|
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
|
|
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
|
|
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
|
|
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
|
|
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
|
|
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
|
|
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
|
|
<asp:ScriptReference Name="WebFormsBundle" />
|
|
<%--Site Scripts--%>
|
|
</Scripts>
|
|
</asp:ScriptManager>
|
|
<uc1:cmp_header runat="server" ID="cmp_header" />
|
|
<div class="container-fluid p-2">
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
<uc1:cmp_footer runat="server" ID="cmp_footer" />
|
|
</div>
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|