Files
MoonPro.net/MP-Tablet/Turni.aspx.cs
T
2018-03-08 14:36:49 +01:00

18 lines
357 B
C#

using SteamWare;
using System;
using System.Web.UI;
namespace MoonProTablet
{
public partial class Turni : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.Title = devicesAuthProxy.getPage(Request.Url);
Session["TipoLink"] = "EditMacch";
}
}
}
}