At the moment I have a jQuery do a POST to a Controller which returns a ContentResult. When the OnSuccess event fires from jQuery it updates a div with the returned data. I now want to update another DIV with model data.
I am thinking have a RenderPartial in my view, do the post and return a PartialResult which will handle this new div but what about the DIV I was previously populating?
Is combining a JavaScriptResult and a PartialResult possible? The JavaScript result handles the first DIV I mentioned and the PartialResult the new DIV.
Thanks