23 lines
509 B
C#
23 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace GPW_Commesse
|
|
{
|
|
public partial class test01 : System.Web.UI.Page
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
cmp_chart.dtRif = DateTime.Today;
|
|
hfShow01.Value = "false";
|
|
hfShow02.Value = "true";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |