Files
MoonPro.net/MP-Tablet/Default.aspx.cs
T
2016-11-14 11:10:03 +01:00

18 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using SteamWare;
namespace MoonProTablet
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect(memLayer.ML.confReadString("mainPage"));
}
}
}