当前位置:  开发笔记 > 编程语言 > 正文

ASP.NET MVC在虚拟目录中

如何解决《ASP.NETMVC在虚拟目录中》经验,为你挑选了0个好方法。

我在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有什么特殊注意事项吗?

推荐阅读
保佑欣疼你的芯疼
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有