无法设置htmlAttribute参数

时间:2011-02-16 13:47:34

标签: asp.net-mvc

我正在添加对象htmlAttributes参数并收到错误:

  

“错误41匿名类型无效   成员声明者。匿名类型   成员必须与成员一起宣布   作业,简单名称或成员   访问“

Response.Write(Html.CheckBox("chkStatus", item.Value) + " " + item.Text + "<br />");
Response.Write(Html.CheckBox("chkStatus", item.Value,new {checked=true}) + " " + item.Text + "<br />");

当我尝试添加“new {checked = true} part。

时,我收到错误

无法在线找到c#代码中设置参数的示例,欢呼

1 个答案:

答案 0 :(得分:2)

我认为已检查是一个关键字。尝试将@放在前面:

new { @checked = true }