20 lines
456 B
C#
20 lines
456 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 PUB
|
|
{
|
|
public partial class Reset : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// resetto i dati utente all'accesso alla pagina default...
|
|
devicesAuthProxy.stObj.clearAllUserData();
|
|
Response.Redirect("MainMenu");
|
|
}
|
|
}
|
|
} |