context: onSuccess javascript method after an ajax post
How do I obtain my id in javascript that is sent from my controller’s ActionResult?
On the controller I’ve tried 2 flavors Content Result and JSON Result and both of those show up as [object] in my alert().
Thanks,
rodchar
Not sure what the model is you are sending back but your probably just need to inspect the JSON object you are sending back from the controller. Try using Firebug or another such toolbar to let you inspect the object. Good luck.