17 lines
360 B
C#
17 lines
360 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace MoonProTablet
|
|
{
|
|
public partial class Default : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
this.Title = devicesAuthProxy.getPage(Request.Url);
|
|
}
|
|
Response.Redirect(memLayer.ML.confReadString("mainPage"));
|
|
}
|
|
}
|
|
} |