我正在阅读使用C#by Adam Freeman的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>
简而言之,我正试图路由到特定的网址“列表”
RouteConfig.cs class with routes defined
链接下载zip: https://www.dropbox.com/s/xsuzd1hua3pdvsq/SportsStoreApplications.zip?dl=0
答案 0 :(得分:0)
我从头开始重新制作它并且我成功了。从昨天开始真是恐怖......现在感觉真棒!谢谢你的帮助
我回收了IIS Expresss ...整个应用程序...除了从头开始做任何其他工作......
感谢@RBT和@gmiley提供所有帮助