I have some stored JSON strings stored in the DB which I want to return to the client as JsonResult . I know that Json(object) turns an object into JsonResult but what if I already have the result in a string ? can I cast it to JsonResult
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You don't want to return a
Remember that your MVC action methods should all have |
|||||
|
|
You could return the string to the client and then use the $.parseJSON() (jquery) to parse it to an actual json object. |
|||
|
|