Files
MoonPro.net/MP-ADM/test.aspx.cs
T
2018-10-27 11:58:26 +02:00

10 lines
241 B
C#

using System;
public partial class test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
lblOut.Text = string.Format("H: {0} - W: {1}", Session["WindowHeight"], Session["WindowWidth"]);
}
}