80 lines
3.9 KiB
Plaintext
80 lines
3.9 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" %>
|
|
<%@ Register Src="~/WebUserContols/cmp_fileUpload.ascx" TagPrefix="uc1" TagName="cmp_fileUpload" %>
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="it">
|
|
<head runat="server">
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="description" content="B2BC Site" />
|
|
<meta name="author" content="Steamware" />
|
|
<link rel="shortcut icon" href="~/favicon.ico" />
|
|
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>B2BC: <%: SteamWare.devicesAuthProxy.getPage(Request.Url) %></title>
|
|
<asp:PlaceHolder runat="server">
|
|
<%: Scripts.Render("~/bundles/modernizr") %>
|
|
</asp:PlaceHolder>
|
|
<webopt:BundleReference runat="server" Path="~/Content/css" />
|
|
</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="updTop">
|
|
<ContentTemplate>
|
|
<div class="container-fluid body-content m-0 p-0">
|
|
<div class="pt-1 my-0 table-secondary">
|
|
<asp:ContentPlaceHolder ID="JumboTronContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</div>
|
|
</div>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
<asp:ContentPlaceHolder ID="NoAjaxContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
<asp:UpdatePanel runat="server" ID="updMain">
|
|
<ContentTemplate>
|
|
<div class="container-fluid my-0 bg-light p-0">
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</div>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
<uc1:tpl_footer runat="server" ID="tpl_footer" />
|
|
</form>
|
|
</body>
|
|
</html>
|