Blogs related to JSON, JSON parsing, getJSON

WCF REST Service to get or post JSON data and retrieve JSON data with DataContract
In this article I will talk about creating WCF RESTful services for CRUD operations that uses JSON and DataContracts. CRUD operations are done by http verbs GET, POST, PUT, and DELETE.

Cascading DropDownList Example Using JSONResult in ASP.NET MVC
This article shows you how to add values of JSONResult to cascading DropDownList. For this I will be using jQuery.Ajax request which will call Controller action method which return JSON object.

How to read JSON file data using AngularJS HTTP Get method
In this blog I am going to show you how you can read JSON content from file and display in ASP.NET MVC view

jQuery Ajax Call With JSONResult in ASP.NET MVC
This article gives you details about how you can implement jQuery AJAX calls to ASP.NET MVC controller and display JSONResult on view.

Populate MVC Listbox using jQuery getJSON and JSONResult
This article shows how you can populate MVC Listbox using jQuery and JSONResult. It uses static values and also shows with model values which can use database values.

ASP.NET MVC Core Controller Action Method and Types of Action Result
This blog explains what is MVC Controller, Action Method, and different types of ActionResult like HTML returning, Content, Redirect, File, Status Code, Security related.

How To Redirect ASP.NET MVC Core Request
In ASP.NET MVC Core request redirection RedirectResult, RedirectToActionResult, RedirectToRouteResult, LocalRedirectResult can be used for redirection.

Return different types of content from ASP.NET Core MVC Action Result
ASP.NET Core MVC action result returns different types of content it can be HTML, JSON, string, or empty content. We will explore ViewResult, PartialViewResult, JsonResult, ContentResult, EmptyResult.

Create MongoDB Docker Image and Connect from .NET Core app
This blog creates a Docker MongoDB Image container, database, collection and connnect this container through .NET Core Console app to read table data.