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"); } } }