Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVC、C#、LINQ、实体
每次用户访问页面时,我都需要输入用于收集活动目录信息的代码。我需要在他们可以访问的任何页面上访问此代码以显示名称。
我在哪里放置 MVC 的 web 表单 session_start 中的代码?
您应该将 Session_Start 放在 global.asax 中,就像在 Web 表单中一样。Global.asax 是 asp.net 框架的一部分。它不是 Web 表单独有的。