Files
WebGIM/GIM_site/UpdateVoc.aspx.cs
T
Samuele E. Locatelli 7d289a3b64 Remove & Sort Using...
pulizia codice...
2017-04-14 16:33:09 +02:00

18 lines
440 B
C#

using SteamWare;
using System;
public partial class UpdateVoc : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// aggiorno vocabolario
DataWrap.DW.resetVocabolario();
// torno a menu...
if (user_std.pagPrecedente == user_std.pagCorrente)
{
user_std.pagPrecedente = "~/Default";
}
Response.Redirect(user_std.pagPrecedente);
}
}