上下文: 我正在开发我的第一个MVC应用程序,我正在遵循Steven Sanderson的“Pro ASP.NET MVC Framework 2”一书中的示例。 我按照第一章和我已经实现了类似的应用程序“SportStore”完整代码可以位于以下链接http://pastie.org/2451370
该应用程序有两个控制器
1 .- NavController旨在使用用户控件“Menu.ascx”实现用户菜单
2 .- PostEntryController旨在列出属于特定菜单选项的帖子
在调试模式下运行应用程序时出现问题NavController生成的链接由于某种原因无法实现PostEntryController未实例化。
当我检查生成的源代码时,aspx文件显示为(PostEntry / Index.aspx)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="/MarsWeb/Content/Site.css" rel="stylesheet" type="text/css" />
<link href="/MarsWeb/Content/jquery.treeview.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/MarsWeb/Scripts/jquery-1.4.1.js"></script>
<script type="text/javascript" src="/MarsWeb/Scripts/jquery.treeview.js"></script>
<script type="text/javascript" src="/MarsWeb/Scripts/jquery-treeview-1.4.0.min
</script>
<script type="text/javascript">
$(function() {
$("#browser").treeview({collapsed: true,animated: "medium",control: "#categories",
unique: true,persist: "location"});})
</script>
<title>Posts</title></head>
<body>
<div id="header">
<div id="title">
<h1>Mars Ventas</h1>
</div>
</div>
<div id="categories">
<ul id="browser" class="filetree">
<li><span class="folder"><a href="/PostEntry/Index/0/1">Home</a></span></li>
<li><span class="folder"><a href="/PostEntry/Index/2/1">Ventas</a></span></li>
<li><span class="folder"><a href="/PostEntry/Index/3/1">Avance de Ventas</a></span></li>
<li><span class="folder"><a href="/PostEntry/Index/4/1">Browser</a></span></li>
</ul>
</div>
</html>
任何人都可以帮助我吗?
这是Global.asax
routes.MapRoute("PostEntry", "PostEntry/{action}/{MenuItemId}/{page}", // Matches ~/MenuId
new { controller = "PostEntry", action = "Index", MenuItemId = (string)null },
new { page = @"\d+" }
);
routes.MapRoute("MenuItem", "PostEntry/{action}/{MenuItemId}", // Matches ~/MenuId
new { controller = "PostEntry", action = "Index", MenuItemId = (string)null, page = 1 }
);
routes.MapRoute(null, "", // Only matches the empty URL (i.e. ~/)
new { controller = "PostEntry", action = "Index", MenuItemId ="0", page = 1}
);
当我在地址栏中写下网址时,我可以访问网址
答案 0 :(得分:1)
根据您的描述,我认为链接生成出错了。所以从浏览器中查看html源代码,看看链接是否正确生成。
答案 1 :(得分:1)
我修改了我的Site.Master并禁用了JavaScript,现在链接正常工作。我目前正在阅读以下链接以解决此问题ASP.NET MVC Relative Paths