有没有替代
方法在视图
页面中
获取路由值,而不是像querystring那样读取它?
@Html.ActionLink("Language Resources","Index","LanguageResource",new { languageCode = Request.QueryString["languageCode"],"")
不排除保持简单:
public ActionResult Action(int id)
{
return View( id);
}
指出我们正在处理的模型的类型
@model int
并以强类型的方式通过以下方式引用该值:
@Model
原文链接:https://www.f2er.com/aspnet/253907.html