asp.net core partial view code example
Example 1: asp net core mvc partial view
<partial name="_PartialName" />
Example 2: mvc asp.net partial view from js
<div id="containerId"></div>
$.ajax({
type: "Get",
url: '<Your url>/GetView',
data: mydata,
contentType: "application/text; charset=utf-8",
dataType: "text",
success: function (data, status) {
$('#containerId').append(data);
},
error: function (err) {
console.log(err);
}
});
[HttpGet]
public ActionResult GetView(string obj)
{
try
{
MyModel model = (new JavaScriptSerializer()).Deserialize<MyModel>(obj);
return View("<Your View name>", obj);
}
catch (Exception ex)
{
return Json(ex.Message, JsonRequestBehavior.AllowGet);
}
}