如何在 MVC 3 控制器中查找用户名并设置当前时间?
我试图按如下方式设置用户名:
_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设:
控制器有一个
User
属性,因此不需要使用Context
。对于当前日期/时间,请使用DateTime
中的静态 getter。Take this:
Controller has a
User
property so no requirements to useContext
. For the current date/time use the static getter fromDateTime
.当您使用表单身份验证并且登录时,将始终填充 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