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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With