我的 Global.asax.cs 中有以下内容
routes.MapRoute(
"Arrival",
"{partnerID}",
new { controller = "Search", action = "Index", partnerID="1000" }
);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
我的 SearchController 看起来像这样
public class SearchController : Controller
{
// Display search results
public ActionResult Index(int partnerID)
{
ViewData["partnerID"] = partnerID;
return View();
}
}
并且 Index.aspx 目前只显示 ViewData["partnerID"]。
我在 Windows XP 上的 IIS 中设置了一个名为 Test 的虚拟目录。
如果我将浏览器指向http://localhost/Test/,那么我会按预期显示 1000。但是,如果我尝试http://localhost/Test/1000我会得到一个找不到页面的错误。有任何想法吗?
在虚拟目录中运行 MVC 是否有任何特殊注意事项?