Files
SSC/CMS_SC/Logout.aspx.cs
T

25 lines
641 B
C#

using CMS_SC_Data;
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 Logout : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// cancello cookie!
memLayer.ML.emptyCookieVal(devicesAuthProxy.AuthCookieName);
// resetto sessione
devicesAuthProxy.stObj.clearAllUserData();
OpAuth.stopAuth();
// reload default!
Response.Redirect("Default");
}
}
}