Files
NKC/NKC_WF/UpdateVoc.aspx.cs
T
2019-07-31 15:40:08 +02:00

18 lines
405 B
C#

using SteamWare;
using System;
namespace NKC_WF
{
public partial class UpdateVoc : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// aggiorno vocabolario
DataWrap.DW.resetVocabolario();
// reset dati in cache x DbConfig...
memLayer.ML.resetAppConf();
// torno a menu...
Response.Redirect(user_std.pagPrecedente);
}
}
}