8,755
社区成员




string year = this.Parameters["year"].Value.ToString();
ReportPreviewModel model = new ReportPreviewModel("../ReportService1.svc");
model.ReportName = "SLA_Manage_TrafficSafety.Web.HarborReport";
model.Parameters["year"].Value = txtYear.Text; //参数
model.AutoShowParametersPanel = false; //隐藏参数面板
documentPreview1.Model = model;
model.CreateDocument();