Aggiunta pagina x update cache (vocabolario & co)

This commit is contained in:
Samuele E. Locatelli
2020-07-08 21:32:08 +02:00
parent 8392416cec
commit 826e615a16
4 changed files with 54 additions and 0 deletions
+11
View File
@@ -642,6 +642,7 @@
<Content Include="Test.aspx" />
<Content Include="tryLogin.aspx" />
<Content Include="Turni.aspx" />
<Content Include="Update.aspx" />
<Content Include="User.aspx" />
<Content Include="UserList.aspx" />
<Content Include="Web.config">
@@ -886,6 +887,13 @@
<Compile Include="Turni.aspx.designer.cs">
<DependentUpon>Turni.aspx</DependentUpon>
</Compile>
<Compile Include="Update.aspx.cs">
<DependentUpon>Update.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Update.aspx.designer.cs">
<DependentUpon>Update.aspx</DependentUpon>
</Compile>
<Compile Include="User.aspx.cs">
<DependentUpon>User.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -1167,6 +1175,9 @@
<Compile Include="WebUserControls\mod_turni.ascx.designer.cs">
<DependentUpon>mod_turni.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\MpTabControl.cs">
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="windowSize.ashx.cs">
<DependentUpon>windowSize.ashx</DependentUpon>
</Compile>
+5
View File
@@ -0,0 +1,5 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Bootstrap.Master" AutoEventWireup="true" CodeBehind="Update.aspx.cs" Inherits="MoonProTablet.Update" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
</asp:Content>
+21
View File
@@ -0,0 +1,21 @@
using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MoonProTablet
{
public partial class Update : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// update vocabolario...
memLayer.ML.flushRegisteredCache();
// rimando a pag precedente
Response.Redirect("MappaStato");
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MoonProTablet
{
public partial class Update
{
}
}