fix updatepanels
This commit is contained in:
+20
-13
@@ -44,20 +44,27 @@
|
||||
</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>
|
||||
|
||||
<uc1:tpl_header runat="server" ID="tpl_header" />
|
||||
<div class="container-fluid body-content">
|
||||
<div class="jumbotron p-2 my-1">
|
||||
<asp:ContentPlaceHolder ID="JumboTronContent" runat="server">
|
||||
</asp:ContentPlaceHolder>
|
||||
</div>
|
||||
<div class="container-fluid my-1 bg-light px-0">
|
||||
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
||||
</asp:ContentPlaceHolder>
|
||||
</div>
|
||||
<hr />
|
||||
</div>
|
||||
<uc1:tpl_footer runat="server" ID="tpl_footer" />
|
||||
<asp:UpdatePanel runat="server" ID="updMain">
|
||||
<ContentTemplate>
|
||||
<div class="container-fluid body-content">
|
||||
<div class="jumbotron p-2 my-1">
|
||||
<asp:ContentPlaceHolder ID="JumboTronContent" runat="server">
|
||||
</asp:ContentPlaceHolder>
|
||||
</div>
|
||||
<div class="container-fluid my-1 bg-light px-0">
|
||||
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
||||
</asp:ContentPlaceHolder>
|
||||
</div>
|
||||
<hr />
|
||||
</div>
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
<asp:UpdatePanel ID="updFooter" runat="server">
|
||||
<ContentTemplate>
|
||||
<uc1:tpl_footer runat="server" ID="tpl_footer" />
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Generated
+18
@@ -21,6 +21,15 @@ namespace PUB {
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.tpl_header tpl_header;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo updMain.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdatePanel updMain;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo JumboTronContent.
|
||||
/// </summary>
|
||||
@@ -39,6 +48,15 @@ namespace PUB {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ContentPlaceHolder MainContent;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo updFooter.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdatePanel updFooter;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo tpl_footer.
|
||||
/// </summary>
|
||||
|
||||
@@ -3,6 +3,13 @@
|
||||
<div class="container-fluid row">
|
||||
<div class="col-4"><%: DateTime.Now.ToString("yyyy.MM.dd HH:mm") %> | <%: fullVers %> </div>
|
||||
<div class="col-4 text-center text-uppercase">DEV</div>
|
||||
<div class="col-4 text-right">© <%: DateTime.Now.Year %> - powered by Steamware.net</div>
|
||||
<div class="col-4 text-right">
|
||||
<asp:UpdateProgress ID="updPnl" runat="server">
|
||||
<ProgressTemplate>
|
||||
<i class="fas fa-sync fa-spin"></i> <i class="fas fa-sync fa-spin"></i> <i class="fas fa-sync fa-spin"></i>
|
||||
</ProgressTemplate>
|
||||
</asp:UpdateProgress>
|
||||
© 2017-<%: DateTime.Now.Year %> | powered by Steamware.net
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
+9
@@ -11,5 +11,14 @@ namespace PUB.WebUserContols {
|
||||
|
||||
|
||||
public partial class tpl_footer {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo updPnl.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdateProgress updPnl;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user