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

21 lines
417 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 MoonProTablet
{
public partial class Test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.Title = devicesAuthProxy.getPage(Request.Url);
}
}
}
}