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.
将测试期编程到站点中的最简单方法是什么?我不知道超级用户是否以这种方式工作,但是否有在每个页面(可能是工具栏)上运行的代码来检查 betaPassword cookie 并在不正确时将您重定向到页面?
有没有更好的地方来运行代码而不是工具栏?(IIRC 工具栏在我的每一页中)
如果您运行 WebForms,您可以在母版页代码隐藏中添加检查。或者,您可以通过从 System.Web.UI.Page 继承来创建自己的页面类,在那里实现检查,然后从您自己的类派生项目中的所有页面。
如果您使用 MVC,我会在自定义 ActionFilter 属性中实现这一点。
The easiest way would be to implement a custom HttpModule