我有这个,产品控制器的一个动作:
public ActionResult SortedLists(List<string> items, string ShopID)
{
//Do sth...
db.SaveChanges();
return RedirectToAction("Index", "ControlPanel", new {ID = ShopID });
}
而 Index 是 ControlPanel Controller 的操作(视图):
public ActionResult Index(int ID)
{
ViewBag.theRelatedShopID = ID;
return View();
}
我追踪了代码。索引页面呈现,但浏览器中没有显示任何内容。只是在 URL 中添加了一个“#”,如下所示:http://localhost:55161/#
。为什么我看不到页面?
页面索引不是强类型的。