2

我正在使用 Adam Freeman 的 C# 阅读 Pro Asp.net 4.5 我被困在他在文件夹中添加路由到RouteConfig.cs类的位置。App_Start

当我改变

project properties -> Web Tab ->
 Specific Page (Inside Start Action section) -> Specify "list"

并尝试对其进行测试,它显示找不到目录错误。

以下任意组合:

list/2
list/3...

不工作

IISExpress/appconfiguration代码 :

<!-- language: xml -->

    <site name="SportsStoreApplications" id="23"> 
        <application path="/" applicationPool="Clr4IntegratedAppPool"> 
            <virtualDirectory 
                path="/" 
                physicalPath="c:\users\krushank\documents\visual studio 2012\Projects\SportsStoreApplications\SportsStoreApplications" /> 
        </application> 
        <bindings> 
            <binding protocol="http" bindingInformation="*:3079:localhost" /> 
        </bindings> 
    </site>

简而言之,我正在尝试路由到特定的 url “列表”

RouteConfig.cs 类,定义了路由

下载 zip 的链接: https ://www.dropbox.com/s/xsuzd1hua3pdvsq/SportsStoreApplications.zip?dl=0

4

1 回答 1

0

我从头开始重新制作它,我成功了。从昨天开始就是一个真正的恐怖......现在感觉棒极了!感谢你的帮助

我回收了 IIS Expresss ......整个应用程序......除了从头开始制作它之外没有其他工作......

感谢@RBT 和@gmiley 的所有帮助

于 2016-05-13T17:20:02.663 回答