10

I have the following razor markup:

@{
    var initValue = @Html.Raw(new JavaScriptSerializer().Serialize(Model));
    @Html.Hidden("initial-namings-data", initValue.ToString());
}

It gives me error:

'System.Web.Mvc.HtmlHelper' has no applicable method named 'Hidden' but appears to have an extension method by that name. Extension methods cannot be dynamically dispatched. Consider casting the dynamic arguments or calling the extension method without the extension method syntax.

How can I fix it? Thanks.

hmqcnoesy
  • 4,165
  • 3
  • 31
  • 47
Maxim V. Pavlov
  • 10,303
  • 17
  • 74
  • 174

1 Answers1

21

The problem might be that the compiler cannot choose the correct type.

Try changing it too:

@Html.Hidden("initial-namings-data", (string)initValue.ToString());

Look at this stackoverflow question: https://stackoverflow.com/a/3822588/950890

Community
  • 1
  • 1
Fredrik Sundmyhr
  • 801
  • 6
  • 16