我试图Json.Encode(...)
在 MVC 4 中调用一个方法,但出现错误:The name 'Json' does not exist in the current context.
我尝试添加System.Runtime.Serialization
具有Json
类的命名空间,但是这个特定的类实例Json
没有Encode
方法。
我在这里缺少什么程序集?
这是我的确切代码:
{ url: '@Url.Action("DeleteDefinitionRule")', editData:
{ companyCode: 'LO', definitionID:@Html.Raw(Json.Encode(Model.DefinitionID)) } }