Files
b2bcondomini.it/PUB/Site.Master
T
2018-06-13 19:10:35 +02:00

71 lines
3.2 KiB
Plaintext

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="PUB.SiteMaster" %>
<%@ Register Src="~/WebUserContols/tpl_header.ascx" TagPrefix="uc1" TagName="tpl_header" %>
<%@ Register Src="~/WebUserContols/tpl_footer.ascx" TagPrefix="uc1" TagName="tpl_footer" %>
<!DOCTYPE html>
<html lang="en">
<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><%: Page.Title %> - Applicazione ASP.NET</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="respond" />
<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>
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/v4-shims.js"></script>
<asp:UpdatePanel runat="server" ID="updHeader">
<ContentTemplate>
<uc1:tpl_header runat="server" ID="tpl_header" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel runat="server" ID="updMain">
<ContentTemplate>
<div class="container-fluid body-content">
<div class="jumbotron p-2 my-0">
<asp:ContentPlaceHolder ID="JumboTronContent" runat="server">
</asp:ContentPlaceHolder>
</div>
<div class="container-fluid my-0 bg-light px-0">
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
<hr />
</div>
</ContentTemplate>
</asp:UpdatePanel>
<uc1:tpl_footer runat="server" ID="tpl_footer" />
</form>
</body>
</html>