From 826e615a16796aff11a4fdfea1e7831e4549ae9d Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 8 Jul 2020 21:32:08 +0200 Subject: [PATCH] Aggiunta pagina x update cache (vocabolario & co) --- MP-TAB/MP-TAB.csproj | 11 +++++++++++ MP-TAB/Update.aspx | 5 +++++ MP-TAB/Update.aspx.cs | 21 +++++++++++++++++++++ MP-TAB/Update.aspx.designer.cs | 17 +++++++++++++++++ 4 files changed, 54 insertions(+) create mode 100644 MP-TAB/Update.aspx create mode 100644 MP-TAB/Update.aspx.cs create mode 100644 MP-TAB/Update.aspx.designer.cs diff --git a/MP-TAB/MP-TAB.csproj b/MP-TAB/MP-TAB.csproj index 59ba9ee8..f60ae373 100644 --- a/MP-TAB/MP-TAB.csproj +++ b/MP-TAB/MP-TAB.csproj @@ -642,6 +642,7 @@ + @@ -886,6 +887,13 @@ Turni.aspx + + Update.aspx + ASPXCodeBehind + + + Update.aspx + User.aspx ASPXCodeBehind @@ -1167,6 +1175,9 @@ mod_turni.ascx + + ASPXCodeBehind + windowSize.ashx diff --git a/MP-TAB/Update.aspx b/MP-TAB/Update.aspx new file mode 100644 index 00000000..5b11c980 --- /dev/null +++ b/MP-TAB/Update.aspx @@ -0,0 +1,5 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Bootstrap.Master" AutoEventWireup="true" CodeBehind="Update.aspx.cs" Inherits="MoonProTablet.Update" %> + + + + diff --git a/MP-TAB/Update.aspx.cs b/MP-TAB/Update.aspx.cs new file mode 100644 index 00000000..5d3ea904 --- /dev/null +++ b/MP-TAB/Update.aspx.cs @@ -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"); + } + } +} \ No newline at end of file diff --git a/MP-TAB/Update.aspx.designer.cs b/MP-TAB/Update.aspx.designer.cs new file mode 100644 index 00000000..980c9f0d --- /dev/null +++ b/MP-TAB/Update.aspx.designer.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MoonProTablet +{ + + + public partial class Update + { + } +}