如何以编程方式获取为 ListItem 创建的时间

发布于 2024-10-21 16:24:36 字数 175 浏览 2 评论 0原文

我正在 ASP.NET 中为 SharePoint 2010 构建一个 Web 部件,我想知道如何获取创建 ListItem 的时间。

使用 SPFile 我可以简单地执行 file.TimeCreated,但 ListItem 没有该属性。

I'm building a webpart for SharePoint 2010 in ASP.NET and I would like to know how to get the time in which a ListItem was created at.

With an SPFile I can simply do file.TimeCreated, but ListItem doesn't have that property.

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

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

发布评论

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

评论(1

无言温柔 2024-10-28 16:24:36

ListItems 将创建和修改的日期时间存储为列。您可以像这样访问创建的时间:

DateTime created = (DateTime)myListItem["Created"];

ListItems store the created and modified datetimes as columns. You can access the created time like so:

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