protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { AHoradateTimePicker1.Text = DateTime.Now.ToString("yyyy-MM-dd"); FInaldateTimePicker2.Text = DateTime.Now.ToString("yyyy-MM-dd"); DatosReportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local; DatosReportViewer.Reset(); DatosReportViewer.LocalReport.DataSources.Clear(); DatosReportViewer.LocalReport.ReportPath = Server.MapPath(@"~\Reportes\DepartamentoReporte.rdlc"); } }
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { ViewState["ModificarArticuo"] = new FacturaDetalle(); LlenaComboBoxCliente(); Fecha.Text = DateTime.Now.ToString("yyyy-MM-dd"); LlenarComboBoxArticulo(); LlenarComboBoxFacturaID(); EfectivoNumeric.Text = 0.ToString(); Disable(); EfectivoNumeric.Enabled = false; DatosReportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local; DatosReportViewer.Reset(); DatosReportViewer.LocalReport.DataSources.Clear(); DatosReportViewer.LocalReport.ReportPath = Server.MapPath(@"~\Reportes\FacturaReporte.rdlc"); } }