@Html.TextBox这个方法的参数有name和value,name的智能提示是“the name of the form field......” 在你提交form表单之前,根本不会有值的!@Html.TextBoxFor(m => m.Value)这个也是在提交的时候才有value值的! 我的问题是,首次加载view的时候我想让form表单中的这些input标签中有值,这个值是我从controller中通过viewdata传过来的,就是代码中的EditPersonalInfo这个类的各个属性值!