我一直致力于创建工资管理系统的项目。我有以下问题: 当我尝试在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文件的其他链接相同的问题。请指教。
答案 0 :(得分:0)
我假设您已经安装了aps模块,并且asp文件运行正常。在这种情况下,您尚未在IIS的web.config中配置静态文件处理程序。
配置&gt;&gt; http://technet.microsoft.com/en-us/library/cc771240(v=ws.10).aspx
此致