I have some data that I want to pass into the View (.aspx page) in JSON format.
I could add an async ajax call and load it that way, but since I have the data upfront, why not just dump it into the view.
I could pass a C# object as the model and in Javascript manually iterate through it to fill out a Javascript object, but this seems like something someone has done before and there may well be a tool to do it already...
Thanks in advance, Chris