如何从ASP.Net显示默认的403页面

时间:2022-03-17 03:30:46

I should be able to display the default 403 Access Denied page from IIS.

我应该能够从IIS显示默认的403 Access Denied页面。

So within my VB.Net code I've tried this:

所以在我的VB.Net代码中我试过这个:

HttpContext.Current.Response.StatusCode = 403
HttpContext.Current.Response.Status = "403 Access Denied"
HttpContext.Current.Response.End()

But when this is called I just get:

但当这个叫做时,我得到:

This page Can't be displayed

此页面无法显示

I thought I would be able to display the default/inbuilt 403 page, or am I way off with this?

我以为我能够显示默认/内置403页面,还是我离开这个?

1 个解决方案

#1


0  

That code works for me. Here are some things you can try:

该代码适用于我。以下是您可以尝试的一些事项:

  1. Ensure IIS is configured to display the 403 page in the Error Pages section.
  2. 确保IIS配置为在“错误页面”部分中显示403页面。

如何从ASP.Net显示默认的403页面

  1. Use the Custom Errors section in your Web.config
  2. 使用Web.config中的“自定义错误”部分

如何从ASP.Net显示默认的403页面

#1


0  

That code works for me. Here are some things you can try:

该代码适用于我。以下是您可以尝试的一些事项:

  1. Ensure IIS is configured to display the 403 page in the Error Pages section.
  2. 确保IIS配置为在“错误页面”部分中显示403页面。

如何从ASP.Net显示默认的403页面

  1. Use the Custom Errors section in your Web.config
  2. 使用Web.config中的“自定义错误”部分

如何从ASP.Net显示默认的403页面