Torna al Thread

protected void Page_Load(object sender, EventArgs e) { DataSet dsCliente = new DataSet(); dsCliente.DataSetName = "DsCliente"; MySqlConnection mycnn = new MySqlConnection(ConfigurationManager.ConnectionStrings["reminder_local"].ToString()); MySqlCommand cmd = new MySqlCommand(); MySqlDataAdapter DA = new MySqlDataAdapter(); cmd.Connection = mycnn; cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new MySqlParameter("P_ID", 1)); cmd.Parameters.Add(new MySqlParameter("P_AncheAnnullati", "True")); cmd.CommandText = "spSelectClienteByID"; DA.SelectCommand = cmd; DA.Fill(dsCliente); dsCliente.Tables[0].TableName = "tbCliente"; rwScheda.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local; rwScheda.LocalReport.ReportPath = MapPath("SchedeClienti.rdlc"); ReportDataSource rptDS = new ReportDataSource(); rptDS.Name = "DSCliente"; rptDS.Value = dsCliente.Tables[0]; rwScheda.LocalReport.DataSources.Add(rptDS); rwScheda.DataBind(); //rwScheda.LocalReport.Refresh(); }
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5