IIS 6 Windows 身份验证问题

发布于 2024-12-27 07:46:06 字数 650 浏览 1 评论 0原文

问题是我无法使用 Window Authentication 查看页面。

这是我的步骤。

我在我的服务器 Windows Server 2003 IIS 6 和 .Net Framework 2 中创建了一个网站。

然后在根文件夹中,我创建了一个文件夹。我们将其命名为“FolderA”。

在“FolderA”中,我创建了一个页面。我们将其命名为“fileA.aspx”。

该网站运行良好。当我打开匿名访问时。

但对于“fileA.aspx”,我需要打开Window Authentication,因为我不希望每个人都进入并查看该页面。

因此,我选择“FolderA”,转到“属性”,

然后关闭“匿名访问”并确保“窗口身份验证”已打开。

然后我从我的电脑上浏览。它提示我登录对话框。

我输入用于登录服务器的凭据,然后就可以访问该页面。

效果很好。

但是,当我从服务器本身查看它时,它提示我登录对话框。

但当我输入我的凭据时,它显示“访问被拒绝”。

我什至尝试使用管理员凭据。

仍然是拒绝访问。

web.config 中是否有任何需要设置或更改的内容?

The issue is I can't view the page using Window Authentication.

This is my steps.

I created a website in my server Windows Server 2003 IIS 6 with .Net Framework 2.

Then Inside the root folder, I created a folder. Let's call it "FolderA".

In "FolderA", I created a page. Let's call it "fileA.aspx".

The website is running fine. As I turn on the Anonymous Access.

But for "fileA.aspx", I need to turn on the Window Authentication coz I don't want everyone to go in and view that page.

So, I select "FolderA", go to Properties,

So, I turn off the Anonymous Access and make sure Window Authentication is turned on.

Then I browse from my PC. It prompted me the Login Diaglog Box.

I key in my credentials I used to log in for the server and I can access the page.

That is working fine.

However, when I view it from the server itself, it prompted me the Login Diaglog Box.

But when I key in my credentials, it is saying "Access Denied".

I even tried using Administrator credentials.

It is still access denied.

Is there any setting to set or anything to change in web.config?

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

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

发布评论

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

评论(2

ゞ记忆︶ㄣ 2025-01-03 07:46:06

http://support.microsoft.com/kb/896861

查看服务器上的事件日志以查看如果你碰巧碰到这个。

http://support.microsoft.com/kb/896861

Review event logs on the server to see if you happen to hit this.

梦晓ヶ微光ヅ倾城 2025-01-03 07:46:06

您是否允许经过身份验证的用户并拒绝未经身份验证的用户?

<authorization>
 <allow users="*"/>
 <deny users="?"/>
</authorization>

Did you allow authenticated users and deny not authenticated users?

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