20 lines
447 B
C#
20 lines
447 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace GPW_Admin
|
|
{
|
|
public partial class Reset : System.Web.UI.Page
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// effettuo reset vocabolario
|
|
DataWrap.DW.resetVocabolario();
|
|
// rimanod a pagina principale
|
|
Response.Redirect("~/login");
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |