通过查询字符串将参数传递给 ssrs

发布于 2024-12-12 09:11:30 字数 411 浏览 1 评论 0原文

我必须将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-12-19 09:11:38

我怀疑问题出在您传递的 StartDate 和 EndDate 中。如果这些是实际的日期时间值,您可能需要正确格式化结果字符串。下面的代码的工作方式有什么不同吗?

Response.Redirect("http://ups117850/rpt/Pages/Rept.aspx?ItemPath=%2feMaaS%2feMaaS&rs:Command=render&studentId=" + studentID + "&startdate=" + StartDate.ToString("s") + "&enddate=" + EndDate.ToString("s") + "&type=" + type);

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?

Response.Redirect("http://ups117850/rpt/Pages/Rept.aspx?ItemPath=%2feMaaS%2feMaaS&rs:Command=render&studentId=" + studentID + "&startdate=" + StartDate.ToString("s") + "&enddate=" + EndDate.ToString("s") + "&type=" + type);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文