@Html.TextBoxFor
<input id="DateBegin" name="DateBegin" type="text" onclick="WdatePicker({skin:'blue',qsEnabled:false,maxDate:'#F{$dp.$D(\'DateEnd\')}'})"
class="Wdate" />
上边怎么用html helper表示
下边这么是错的
@Html.TextBoxFor(a => a.DateBegin,{onclick="WdatePicker({skin:'blue',qsEnabled:false,maxDate:'#F{$dp.$D(\'DateEnd\')}'})",
class="Wdate" })
------解决方案--------------------{} 前面加new ,new {} 是 匿名对象的 申明方式, class 前面加 @ 因为class与C# 关键字 冲突.