回复 1楼hbtx的帖子
比如需要为一个参数设置两个值,可以使用这样的代码:
- public partial class WebForm1 : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- GrapeCity.ActiveReports.PageReport report = new GrapeCity.ActiveReports.PageReport(new System.IO.FileInfo(Server.MapPath("PageReport1.rdlx")));
- report.Document.Parameters[0].Values.Add(new GrapeCity.ActiveReports.Expressions.ExpressionObjectModel.ParameterValue());
- report.Document.Parameters[0].Values[0].Value = 1;
- report.Document.Parameters[0].Values.Add(new GrapeCity.ActiveReports.Expressions.ExpressionObjectModel.ParameterValue());
- report.Document.Parameters[0].Values[1].Value = 1;
- WebViewer1.Report = report;
- }
- }
- }
复制代码 |