您好!您在IIS上部署MVC应用程序时遇到了空白页面的问题。这可能是由多种原因导致的,我们可以从以下几个方面进行排查:
<?xml version="1.0" encoding="utf-8"?><configuration>
<system.webServer>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
<system.web>
<compilation debug="true" targetFramework="4.5" />
</system.web>
</configuration>
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
如果以上方法都无法解决您的问题,请提供更多的错误信息或日志,以便我们更好地帮助您解决问题。
领取专属 10元无门槛券
手把手带您无忧上云