asp.net mvc 离线测试

发布于 2024-08-26 18:03:24 字数 111 浏览 10 评论 0原文

我需要在实时“asp.net mvc”网站中测试一项功能,并且希望在测试时阻止对该网站的访问,您建议如何执行此操作?是否可以阻止访问并仍然能够以匿名用户身份进行测试? (我需要以未登录的用户身份测试该过程)。

I need to test a feature in a live "asp.net mvc" web site and would want to block access to the site while testing, how would you recommend doing that? Is it possible to block access and still be able to test as an anonymous user? (I need to test the process as a user that's not logged in).

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

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

发布评论

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

评论(1

毁梦 2024-09-02 18:03:24

我建议您创建 HttpModule 来检查 IsTesting 属性是否设置。
如果 IsTesting 为 true,则将所有请求重定向到 under_construction.html,来自特定 IP 地址的请求除外。

I would recommend you to create HttpModule that will check is IsTesting property is set.
If IsTesting is true, than redirect all requests to under_construction.html, except requests from specific IP addresses.

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