Files
MoonPro.net/MP-TAB/Update.aspx.cs
T
2020-09-14 21:25:58 +02:00

21 lines
493 B
C#

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 : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
// update vocabolario...
memLayer.ML.flushRegisteredCache();
// rimando a pag precedente
Response.Redirect("MappaStato");
}
}
}