예제 #1
0
        protected void Page_Init(object sender, EventArgs e)
        {
            Title = "ILC Settings - " + ConstExpressions.GetWebApplicationName();

            foreach (object validator in Validators)
            {
                if (validator is RangeValidator)
                {
                    SetRangeValidatorText((RangeValidator)validator);
                }
            }
        }
예제 #2
0
 protected void Page_Init(object sender, EventArgs e)
 {
     Title = "Reports - " + ConstExpressions.GetWebApplicationName();
     if (IsPostBack)
     {
         DataTable reportDataSource = (DataTable)Session[ReportDataSourceSessionKey];
         if (reportDataSource != null)
         {
             // Should be performed in Page_Init
             // to avoid resetting of parameters coming from request
             CrystalReportSource1.ReportDocument.SetDataSource(reportDataSource);
             crystalReportViewer.DataBind();
         }
     }
 }
 protected void Page_Init(object sender, EventArgs e)
 {
     Title = "Validation Settings - " + ConstExpressions.GetWebApplicationName();
 }
예제 #4
0
 protected void Page_Init(object sender, EventArgs e)
 {
     Title = "Scripts - " + ConstExpressions.GetWebApplicationName();
 }