การใช้ Dataset กับ Crytal Report แล้วพอคลิก nextpage มันขึ้นให้ logonใหม่
คือว่าผมใช้ Crytalreport ออกรายงาน แล้วใช้ Dataset เป็น ข้อมูลในการแสดง มัน proview ได้ปกตินะคับ มีข้อมูลขึ้น
แต่พอ คลิก ไปเพจสองหรือกระทำการอะไร มันจะแสดงให้ทำการ logon ผมลองหาในเน็ตแล้ว ลองวนใส่ set logon ลองทำตามแล้วมันก็ยังแสดงเหมือนเดิม
ไม่ทราบว่า พอจะมีวิธีมั้ยครับ ตอนนี้ทำ เป็น C# ไว้ครับ
โคสคล่าวๆๆก็มีแบบนี้อะครับ
reportDocument.Load(Server.MapPath("../Report/CrystalReport1.rpt"));
DataTable dt = CtlData.GetRemainStock("41112", "M", "29000", "07/19/2011", null, "01");
dt.TableName = "SP_ReportRMStockDaily";
ds.Tables.Add(dt);
reportDocument.SetDatabaseLogon("sa", "", "1.1.1.1", "TestSystem");
reportDocument.SetDataSource(ds);
CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReportSource = reportDocument;Tag : .NET, Crystal Report, Web (ASP.NET), C#, VS 2008 (.NET 3.x)
Date :
2011-07-22 13:46:01
By :
pacus
View :
1172
Reply :
4
มะมีใครพอรู้บ้างเลยหรอ
Date :
2011-07-22 16:32:39
By :
pacus
Code (VB.NET)
เพิ่ม
Session("ReportSource1") = crystalReport
กับสร้าง
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
If (Not (Session("ReportSource1")) Is Nothing) Then
CrystalReportViewer1.ReportSource = Session("ReportSource1")
End If
End Sub
ลองดูนะครับเผือได้
Date :
2011-09-29 13:45:20
By :
maxsutza
Date :
2011-09-30 00:15:25
By :
่ำVC#.Net
พอดีๆๆผม จะทำพอดีครับ อยากได้ โค๊ด ตัวอย่างครับๆๆ โพส ให้หน่อยก็ดรน่ะครับ C# หรือ VB.net ก็ได้น่ะครับ ขอบคุนๆๆมมากครับ
Date :
2011-09-30 21:02:41
By :
noi014
Load balance : Server 02