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