In this article I will show you how to make a json file from c# object using asp.net mvc. When user click the button event, the jQuery ajax call the server side mvc action method CreateJson(). The function contains JavascriptSerializer, it convert data to json format and save json to file of the project folder.
Here, I created a folder and named as json, make sure create it your project and also import System.Web.Script.Serialization to it.
Step 1: Create an asp.net mvc project and right click on the controller folder and create a new controller and name it as HomeController. Inside the HomeController copy and paste the following code.
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult CreateJson()
{
try
{
using (models context = new models())
{
context.Configuration.ProxyCreationEnabled = false; // included the following code
var CustomerList =context.Customers.ToList();
var jsondata = new JavaScriptSerializer().Serialize(CustomerList);
string path =Server.MapPath("~/Json/");
System.IO.File.WriteAllText(path + "customer.json",jsondata);
return Json(CustomerList, JsonRequestBehavior.AllowGet);
}
}
catch (Exception ez)
{
return null;
}
}
Step 2: Right click on the Share folder and create a razor view named as index. Copy and paste the following code.
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<p>
<input type="button" id="btnCreateJson" value="Create Json" class="btn btn-default" />
</p>
<script type="text/javascript">
$(function () {
$("#btnCreateJson").click(function () {
$.post("/Home/CreateJson", function (response) {
if (response != null) {
alert("Json Created");
location.reload();
}
else {
alert("Error");
}
});
})
});
</script>
Create Json file c#:
Post your comments / questions
Recent Article
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article