私はMVC3かみそりの初心者です。実行時にこのエラーが発生する理由を教えてください。
エラー:
Object reference not set to an instance of an object.
ActionLinkで壊れます。
HTMLコード:
@model Solution.User
@using (Html.BeginForm())
{
@Html.TextBoxFor(model => model.Name, new {@id = "name-ref", @class = "text size-40"})
@Html.ActionLink("Go Ahead", "Index", "Home", new {name = Model.name, @class = "button" })
}
コントローラ
[HttpPost]
public ActionResult Index(string name)
{
return View();
}
どうもありがとう