63 lines
1.2 KiB
C#
63 lines
1.2 KiB
C#
using SteamWare;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace GPW_Smart.WebUserControls
|
|
{
|
|
public partial class cmp_info : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public string hashEmail
|
|
{
|
|
get
|
|
{
|
|
return memLayer.ML.StringSessionObj("hashEmail");
|
|
}
|
|
}
|
|
public string email
|
|
{
|
|
get
|
|
{
|
|
return memLayer.ML.StringSessionObj("email");
|
|
}
|
|
}
|
|
public string cognomeNome
|
|
{
|
|
get
|
|
{
|
|
return memLayer.ML.StringSessionObj("cognomeNome");
|
|
}
|
|
}
|
|
public string IP
|
|
{
|
|
get
|
|
{
|
|
return Request.UserHostName;
|
|
}
|
|
}
|
|
|
|
public string versione
|
|
{
|
|
get
|
|
{
|
|
return string.Format("{0} v.{1}", ConfigurationManager.AppSettings.Get("appName"), System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);
|
|
}
|
|
}
|
|
public string copyRight
|
|
{
|
|
get
|
|
{
|
|
return string.Format("{0}", ConfigurationManager.AppSettings.Get("copyRight"));
|
|
}
|
|
}
|
|
}
|
|
} |