如何从 Web 服务界面获取 SSRS 报告的日期格式?

发布于 2024-08-12 00:27:05 字数 365 浏览 2 评论 0原文

我从 Web 服务获取 C# 代码中的报告参数,如下所示:

ReportingService2005 ReportingService = ConnectToSSRS();
ReportParameter[] ReportParams = ReportingService.GetReportParameters(reportSelector.SelectedValue, HistoryID, ForRendering, emptyParams, null);

DateTime 参数当前似乎始终显示为 mm/dd/yyyy。日期格式在哪里定义的?它不是像这样硬编码的吗?有没有办法让我从代码中获取 DateFormat?

谢谢

I get report params in C# code from the webservice as follows:

ReportingService2005 ReportingService = ConnectToSSRS();
ReportParameter[] ReportParams = ReportingService.GetReportParameters(reportSelector.SelectedValue, HistoryID, ForRendering, emptyParams, null);

DateTime parameters currently seem to always come up as mm/dd/yyyy. Where is the date format defined? It's not hardcoded like this is it? Is there a way for me to obtain the DateFormat from code?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

蓝天白云 2024-08-19 00:27:05

您看到的是 DateTime 对象的默认格式字符串表示形式(根据您的语言环境......可能),所以是的,从某种意义上说,它是这样编码的。

如果您正在使用 DateTime 对象,您可以将其强制为您最喜欢的格式,而不是尝试找出它的格式。

dt.ToString("MM/dd/yyyy hh:mm:sszzz")

您可能需要查看此处以获取可能对您有帮助的信息。
还有这个

What you're seeing is the default format string representation of the DateTime object (according to your locale...probably), so yes, in a sense, it is harcoded like that.

If you're working with a DateTime object though, rather than try and figure out what format it is in, you could just force it to whatever format you like best.

dt.ToString("MM/dd/yyyy hh:mm:sszzz")

You might want to take a look here for information that might help you.
Also this.

樱&纷飞 2024-08-19 00:27:05

尝试使用 ISO 8601 日期格式,例如 1999-06-01。它会起作用的。

Try to use ISO 8601 date format, e.g. 1999-06-01. It will work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文