CinnamonBun
CinnamonBun

Reputation: 1150

Convert view model data to json

I'm trying to convert my view model data to JSON, however, I can't seem to access @Json.Encode. I've added the System.Web.Helpers reference, but that didn't work. What am I doing wrong?

Upvotes: 4

Views: 5682

Answers (1)

Greg Ennis
Greg Ennis

Reputation: 15379

Put this at the top of your view

@using Newtonsoft.Json

And then you can do this

@Html.Raw(@JsonConvert.SerializeObject(ViewBag.MyStuff))

Upvotes: 9

Related Questions