I want to store and update POST json data into a file using ASP.NET MVC. I'm sending data:
$http({
url: "AddMenus",
dataType: 'json',
method: 'POST',
data: MenusInfo,
headers: {
"Content-Type": "application/json"
}
});
Add Menus is action method and MenusInfo is a JSON object.