ASP.NET MVC LCID 和会话
我必须简短地回答有关 ASP MVC 的问题。最好的地方在哪里 用于设置 Session.LCID
?
谢谢
i have to short questions on ASP MVC. Where is the best place
for setting on Session.LCID
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在三个地方:
登录后,在成功通过身份验证后在控制器内。
当他们明确改变文化环境时。
在他们登录之前,您将基于浏览器或 IP 地址和 在基本控制器中设置,首先从会话中读取以检查是否已在上面设置。
In three places:
Upon login, inside the controller once successfully authenticated.
When they change their culture setting explicitly.
Before they are logged in you would base it on browser or ip address and set in a base controller, reading from the session first to check if it's been set above.