|
|
|
sql ส่งค่า parameter ไป ยัง รายงาน crystal report asp.net c# |
|
|
|
|
|
|
|
ใช้คำสั่ง aod.SetParameterValue ได้เลยหรอค่ะ ต้องมีอะไรเรียกไหมค่ะ
|
|
|
|
|
Date :
2011-06-09 16:52:43 |
By :
mushroomsn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
objCmd.Parameters.AddWithValue("AgentCode", Label1.Text);
เป็น parameter ยังนี้ ถูกต้องไหมค่ะ
|
|
|
|
|
Date :
2011-06-09 17:02:22 |
By :
mushroomsn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
private void btnReport_Click(System.Object sender, System.EventArgs e)
{
ReportDocument rpt = new ReportDocument();
string directory = My.Application.Info.DirectoryPath;
//rpt.Load(directory & "\myCrystalReport1.rpt")
rpt.Load("C:\\DemoCrystalReport3\\DemoCrystalReport3\\myCrystalReport1.rpt");
rpt.SetParameterValue("CustomerID", this.txtCustomerID.Text);
this.CrystalReportViewer1.ReportSource = rpt;
this.CrystalReportViewer1.Refresh();
}
Go to : สร้าง Parameter และ Formula Fields บน Crystal Reports (VB.NET,C#)
Go to : สุดยอดบทความ Crystal Report กับ .NET Framework (VB.NET , C#)
|
|
|
|
|
Date :
2012-03-24 22:14:39 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|