Files
SSC/CMS_SC/Default.aspx.cs
T
Samuele E. Locatelli 6e1e598e04 Ok home
Ok vocabolario
Fix Gitignore
2015-05-18 11:59:50 +02:00

20 lines
480 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 CMS_SC
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
// resetto i dati utente all'accesso alla pagina default...
devicesAuthProxy.stObj.clearAllUserData();
Response.Redirect("Home");
}
}
}