2608a9f908
- Update parziale visualizzaizone (da rivedere...)
22 lines
537 B
C#
22 lines
537 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();
|
|
DataWrap.DW.resetVocabolario();
|
|
// rimando a pag precedente
|
|
Response.Redirect("MappaStato");
|
|
}
|
|
}
|
|
} |