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); } } }
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(); }
protected void Page_Init(object sender, EventArgs e) { Title = "Scripts - " + ConstExpressions.GetWebApplicationName(); }