如何在 MVC 3 控制器中查找用户名并设置当前时间?

发布于 2024-11-07 20:36:15 字数 217 浏览 0 评论 0原文

我试图按如下方式设置用户名:

_testEdit.Test.CreatedBy = Context.User.Identity.Name
_testEdit.Test.Created = now();

似乎控制器不了解 Context,也不了解 now()。

有谁知道如何设置用户名和当前时间(到日期时间字段)。

谢谢,

I am trying to set the name of my user as follows:

_testEdit.Test.CreatedBy = Context.User.Identity.Name
_testEdit.Test.Created = now();

Seems that the controller has no knowledge of Context and no knowledge of now().

Does anyone know how I can set the user name and the current time (into a datetime field).

Thanks,

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

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

发布评论

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

评论(2

倾城°AllureLove 2024-11-14 20:36:15

假设:

_testEdit.Test.CreatedBy = User.Identity.Name;
_testEdit.Test.Created = DateTime.Now;

控制器有一个 User 属性,因此不需要使用 Context。对于当前日期/时间,请使用 DateTime 中的静态 getter。

Take this:

_testEdit.Test.CreatedBy = User.Identity.Name;
_testEdit.Test.Created = DateTime.Now;

Controller has a User property so no requirements to use Context. For the current date/time use the static getter from DateTime.

离旧人 2024-11-14 20:36:15

当您使用表单身份验证并且登录时,将始终填充 HttpContext.User.Identity.Name(您可以仅使用 User.Identity.Name)。

获取当前时间用户 DateTime.Now

When you are using Form authentication and you will log in, then HttpContext.User.Identity.Name (you could use just User.Identity.Name) will always be filled.

To get current time user DateTime.Now

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