【发布时间】:2013-04-14 13:14:14
【问题描述】:
我一直在从事一个创建工资管理系统的项目。我有以下问题: 当我尝试在 asp 文件中创建链接时,例如
.
.
if Found = 1 then
response.write("Welcome " & rec("firstname") & " " & rec("lastname"))
%>
<br><a href="admin_home.html">Click to continue....</a>
<%
else
%>
.
.
当我点击链接时,我不断收到以下错误:
HTTP Error 404.4 - Not Found
The resource you are looking for does not have a handler associated with it.
Module IIS Web Core
Notification MapRequestHandler
Handler Not yet determined
Error Code 0x80070002
Requested URL http://localhost:80/Project/Home.html
Physical Path C:\inetpub\wwwroot\Project\Home.html
Logon Method Anonymous
Logon User Anonymous
通过 ASP 文件指向 html 文件的其他链接也存在同样的问题。请指教。
【问题讨论】:
-
哪个 IIS 版本?在 Windows 7 机器上的服务器上还是本地?
-
本地在您的 Windows 7 机器上。 IIS 7.5
标签: html iis windows-7 asp-classic