0

我一直在做一个创建工资管理系统的项目。我有以下问题:当我尝试在 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 文件的其他链接也存在同样的问题。请指教。

4

1 回答 1

0

我假设您已经安装了 aps 模块并且 asp 文件运行良好。在这种情况下,您没有在 IIS 的 web.config 中配置静态文件处理程序。

配置 >> http://technet.microsoft.com/en-us/library/cc771240(v=ws.10).aspx

问候,

于 2013-04-14T13:27:05.247 回答