我知道这个论坛和其他资源上有相关的帖子,但我被困住了,无法继续。问题是当我将它发布到 FTP 服务器并导航到我收到错误的 url 地址时,我已经使用 VS2010 完成了一个网站。
以下是我做过的事情:
- 我已启用 IIS 服务和静态内容
- 我已将处理程序映射下的 staticFile 恢复为父级
- 我已经在命令提示符下再次注册了 asp.net(regiis.exe 的东西)
- 在 IIS 管理器中,我在站点下添加了我的网站地址,停止了默认网站并启动了我的网站。
- 我已将我的网站添加到 classic.NET AppPool(集成和 v4.0)
- 我已经启用了默认浏览..
- 我已经完成了通常涵盖的所有建议..
这是我的 web.config:
<configuration>
<system.webServer>
<directoryBrowse enabled="true" showFlags="Date, Time, Size, Extension" />
<defaultDocument>
<files>
<add value="AnaSayfa.aspx" />
</files>
</defaultDocument>
</system.webServer>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>
我在哪里犯错?