使用 Visual Studio 2013 发布后页面无法使用

Page does not work after published with Visual Studio 2013

我有一个在本地主机上运行良好的应用程序,但是当我将它发布到远程服务器时我遇到了问题。我可以看到已发布的页面看起来不错,但是当我单击“保存”时,它会转到空白页面并且没有任何反应。

我可能遗漏了什么?

我不知道我可以在这里提供什么样的应用程序信息来帮助找到解决方案。

我在 Web.config 中进行了更改并成功了。

这是之前的:

<system.webServer>
    <modules>
      <remove name="FormsAuthentication" />
    </modules>
</system.webServer>

现在,什么有效:

<system.webServer>
    <modules  runAllManagedModulesForAllRequests="true" />
</system.webServer>