In my ASP.NET Core Razor Pages application, I sometimes send requests to the server via ajax.
In those cases, I want to return JsonResult
either for success or for error.
But I can't find a way to change HTTP Status Code for JsonResult
.
Here's my method:
public IActionResult OnPostFileUpload()
{
try
{
// code to manage and save the file, this request is AJAX
return new JsonResult("done");
}
catch (Exception ex)
{
return new JsonResult(message); // how should I set it to be 500?
}
}
You can assign the StatusCode to JsonResult
as below:
using System.Net;
return new JsonResult(message)
{
StatusCode = (int)HttpStatusCode.InternalServerError
};
JsonResult class Properties
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With