我要綁定的布爾屬性來隱藏的輸入的控制器,但輸出的HTML代碼是錯誤布爾模型綁定問題4
代碼如下:
public class TestModel
{
public bool IsOk { get; set; }
public bool IsSuccess { get; set; }
}
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new TestModel { IsOk = false, IsSuccess = true });
}
}
<h2>Index</h2>
<p>@Model.IsOk</p>
<p>
<input type="hidden" value="@Model.IsOk" />
</p>
<p>
<input type="hidden" value="@Model.IsSuccess" />
</p>
HTML輸出
<h2>Index</h2>
<p>False</p> //works
<p>
<input type="hidden" /> //where is value?
</p>
<p>
<input type="hidden" value="value" /> //wath's this?
</p>
但是,如果我使用ToString(),以上所有的效果很好,那麼它是我的錯誤?
的可能重複[爲什麼我隱藏輸入文字:價值=「值」,而不是真/假?](http://stackoverflow.com/questions/13455270/why-is-my-hidden- input-writing-value-value-instead-of-true-false) – nemesv