21 lines
499 B
C#
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");
|
|
}
|
|
}
|
|
} |