我有一个看起来像这样的actionresult:
public ActionResult Comment(int id)
{
var news = re.GetNewsByID(id);
NewsViewModel model = new NewsViewModel();
model.Description = news.Description;
model.Imageurl = news.Image;
model.link = news.Link;
model.PubDate = news.Date;
model.Title = news.Title;
return View(model);
}
在我声明的视图中:
@Html.ActionLink("Comment", "Comment", new { id = item.Title })
当我单击操作链接时,我会访问以下网址:
Home/Comment/403
但我希望它以 item.title 结尾。
像这样的东西:
Home/Comment/403/What-ever-the-item-title-contains
我怎样才能做到这一点?