ASP.NET4.0+MVC3網(wǎng)站開發(fā)日志分享
1、頁面直接引用模型數(shù)據(jù),直接用 Model.參數(shù)
2、控制輸入框?qū)挾纫聾Html.TextBoxFor(model => model.discount_percent, new { @style="width:24px;"}) 不能用@Html.EditorFor
3、如果頁面使用了編輯器,則保存的操作函數(shù)前要加[ValidateInput(false)]
4、@Html.Partial方法傳值示例如下: @Html.Partial("editor", new ViewDa...