有!
经过一段时间的到来,我终于得到了我的第一个MVC应用程序在我的开发机器上运行。
方案如下:
我在服务器上有一些管理权限,所以我创建了一个文件夹来保存应用程序。然后,使用VS2013,我根据以下配置发布了应用程序:
服务器上的目标已填充以下文件夹:
以及以下文件:
在IIS 7中,我添加了一个虚拟目录,其物理路径指向先前创建的该文件夹。之后我将虚拟目录转换为Application。
试图运行应用程序并得到一个奇怪的startIndex错误。然后我注意到没有创建App_Data文件夹。所以我更正了,重新运行应用程序,此时创建数据库并正确执行默认路由,呈现主视图。
应用程序中的所有视图都基于此_Layout.cshtml,其中有一个导航栏,其中包含一些导航链接和下拉菜单。其中一个是链接到联系人视图的简单元素:
<a href="/Home/Contact">Contact</a>
好吧,当我点击这个元素时,我得到一个 404 - 找不到文件或目录错误。所有其他链接都是如此。我试图在浏览器的地址栏中显式写入路由,并呈现Contact视图。当然,用户不应该知道如何编写路线。为此,我们创建 navbars ,链接等。
然后我开始 google 来解决这个问题,从那以后我读了数百篇文章,帖子,页面......其中很多人都提到这个问题会简单解决web.config上的几行,如this one。我试过了。没工作。
因此,在IIS 7中,配置如下:
Bellow我出示 web.config 文件:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<compilation defaultLanguage="vb" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
<parameters>
<parameter value="System.Data.SqlServerCe.4.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlServerCe.4.0" type="System.Data.Entity.SqlServerCompact.SqlCeProviderServices, EntityFramework.SqlServerCompact" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SqlServerCe.4.0" />
<add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
</DbProviderFactories>
</system.data>
<connectionStrings>
<remove name="LocalSqlServer" />
<add name="DbControleDeAcesso" providerName="System.Data.SqlServerCe.4.0" connectionString="Data Source=|DataDirectory|\ControleDeAcesso.sdf" />
<add name="DbOrcamento" providerName="System.Data.SqlServerCe.4.0" connectionString="Data Source=|DataDirectory|\Orcamento.sdf" />
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<security>
<authentication>
<anonymousAuthentication enabled="false" />
<windowsAuthentication enabled="true" />
</authentication>
</security>
<modules runAllManagedModulesForAllRequests="true">
<remove name="UrlRoutingModule-4.0" />
<add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />
</modules>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
<defaultDocument>
<files>
<remove value="default.aspx" />
<remove value="iisstart.htm" />
<remove value="index.html" />
<remove value="index.htm" />
<remove value="Default.asp" />
<remove value="Default.htm" />
</files>
</defaultDocument>
<!-- <handlers>
<add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</handlers> -->
</system.webServer>
</configuration>
我不知道它是否相关,但是遵循我的 RouteConfig 类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Orcamento.UI
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Orcamento", action = "Index", id = UrlParameter.Optional }
);
}
}
}
我相信我已经展示了有关我的问题的所有重要信息。如果我省略了,请告诉我。
我投入了大量的时间和精力来学习如何使用EF,jQuery等构建MVC应用程序。我让它在我的开发机器上运行。我很沮丧,它不适用于生产环境。
我真的很希望我能在这里得到一些有价值的帮助。
祝你好运。
Paulo Ricardo Ferreira
答案 0 :(得分:0)
@paulo Ricardo Ferreira首先检查应用程序池是否设置为v4.0,如果它不是选择它。并尝试使用cmd.as重新注册您的4.0版本,如图{{0所示}}
点击输入它将开始安装而不是重新启动你的系统,而不是点击你在iis中的路线,这将是//管理员在顶部,而不是去isapi和CGI限制选项卡。允许我在图像中显示的所有路径下面。