4

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?

Zabavsky
  • 13,340
  • 8
  • 54
  • 79
CinnamonBun
  • 1,150
  • 14
  • 28

1 Answers1

9

Put this at the top of your view

@using Newtonsoft.Json

And then you can do this

@Html.Raw(@JsonConvert.SerializeObject(ViewBag.MyStuff))
Greg Ennis
  • 14,917
  • 2
  • 69
  • 74