Skip to content

Instantly share code, notes, and snippets.

@jens1101
Created July 13, 2016 15:15
Show Gist options
  • Save jens1101/3ab419cf45753411e6654bd71b8ed4e0 to your computer and use it in GitHub Desktop.
Save jens1101/3ab419cf45753411e6654bd71b8ed4e0 to your computer and use it in GitHub Desktop.
ASP.NET MVC return custom response
if(fileToImport.ContentLength > 5 * 1024 * 1024)
{
Response.StatusCode = 500;
Response.Write("File is too large to import! The max file size is 5MB.");
Response.StatusDescription = "Internal server error";
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment