Files
GPW/GPW_Admin/Reset.aspx.cs
T
2021-01-07 23:32:48 +01:00

21 lines
499 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 GPW_Admin
{
public partial class Reset : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// effettuo reset vocabolario
DataWrap.DW.resetVocabolario();
// rimanod a pagina principale
Response.Redirect("~/login");
}
}
}