|
|
|
สอบถามหน่อยครับ พอดี Crystal Report Next ไปได้แค่หน้า 2 ครับ |
|
|
|
|
|
|
|
คือพอกด Next ใน Crystal Report ไปได้แค่หน้า 2 ครับ แล้วก็เลือกไปหน้าสุดท้ายไปได้ครับ
แล้วพอกด Back ก็กลับมาที่หน้า 1 เลยครับ
Code (C#)
void ConfigureCrystalReports()
{
CrystalDecisions.CrystalReports.Engine.ReportDocument rptReport
= new CrystalDecisions.CrystalReports.Engine.ReportDocument();
rptReport.Load(Server.MapPath("report4.rpt"));
rptReport.SetParameterValue("startdate", Session["startdate"].ToString());
rptReport.SetParameterValue("enddate", Session["enddate"].ToString());
//rptReport.SetParameterValue("end_date", Request.QueryString["to"]);
rptReport.SetDatabaseLogon("sa", "password");
CrystalReportViewer1.ReportSource = rptReport;
Session["ReportSource1"] = rptReport;
}
protected void Page_Init(object sender, EventArgs e)
{
if (Session["ReportSource1"] != null)
{
CrystalReportViewer1.ReportSource = Session["ReportSource1"];
}
}
ทำอะไรผิดหรือเปล่าครับ
Tag : .NET, Ms SQL Server 2008, Crystal Report, Reporting Service, Web (ASP.NET), C#
|
|
|
|
|
|
Date :
2015-11-14 15:20:24 |
By :
toey1 |
View :
824 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะมีปัญหาเกี่ยวกับ Page Life Cycle ครับ ที่เกี่ยวข้องกับ PostBack ครับ
Code (C#)
protected void Page_Init(object sender, EventArgs e)
{
if (!IsPostBack)
{
ReportDocument crystalReportDocument = new ReportDocumment();
crystalReportDocument.SetDataSource(DataTableHere);
_reportViewer.ReportSource = crystalReportDocument;
Session["ReportDocument"] = crystalReportDocument;
}
else
{
ReportDocument doc = (ReportDocument)Session["ReportDocument"];
_reportViewer.ReportSource = doc;
}
}
|
|
|
|
|
Date :
2015-11-16 10:30:48 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไปได้แค่หน้า2ครับ
Code (C#)
protected void Page_Init(object sender, EventArgs e)
{
if (!IsPostBack)
{
CrystalDecisions.CrystalReports.Engine.ReportDocument rptReport
= new CrystalDecisions.CrystalReports.Engine.ReportDocument();
rptReport.Load(Server.MapPath("report4.rpt"));
rptReport.SetDatabaseLogon("sa", "password");
CrystalReportViewer1.ReportSource = rptReport;
Session["ReportSource1"] = rptReport;
}
else
{
ReportDocument doc = (ReportDocument)Session["ReportSource1"];
CrystalReportViewer1.ReportSource = doc;
}
}
รบกวนแนะนำด้วยครับ
|
|
|
|
|
Date :
2015-11-17 10:12:46 |
By :
toey1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนด้วยครับ ยังติดอยู่เลยครับ
|
|
|
|
|
Date :
2015-11-18 21:56:53 |
By :
toey1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|