通过查询字符串将参数传递给 ssrs
我必须将 4 个参数传递给 ssrs 报告,这就是我的 url 的样子
Response.Redirect("http://ups117850/rpt/Pages/Rept.aspx?ItemPath=%2feMaaS%2feMaaS&rs:Command=render&studentId=" + studentID + "&startdate=" + StartDate + "&enddate=" + EndDate + "&type=" + type);
Studentid=1031
startdate=4/1/2011
enddate=4/30/2011
type=student
ssrs 抛出错误“参数验证失败”
I have to pass 4 parameters to ssrs report, this is how my url looks
Response.Redirect("http://ups117850/rpt/Pages/Rept.aspx?ItemPath=%2feMaaS%2feMaaS&rs:Command=render&studentId=" + studentID + "&startdate=" + StartDate + "&enddate=" + EndDate + "&type=" + type);
studentid=1031
startdate=4/1/2011
enddate=4/30/2011
type=student
ssrs throws error 'parameters validation failed"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑问题出在您传递的 StartDate 和 EndDate 中。如果这些是实际的日期时间值,您可能需要正确格式化结果字符串。下面的代码的工作方式有什么不同吗?
I suspect the problem is in the StartDate and EndDate that you are passing. If these are actual DateTime values you may need to format the resulting string properly. Does the code below work any differently?