12 lines
278 B
C#
12 lines
278 B
C#
using System;
|
|
|
|
namespace MP_ADM
|
|
{
|
|
public partial class test : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lblOut.Text = string.Format("H: {0} - W: {1}", Session["WindowHeight"], Session["WindowWidth"]);
|
|
}
|
|
}
|
|
} |