我正在使用kendo上传控件。在这里,我将文件发送到控制器。从那里我打电话给web api mentod将文件保存到数据库中。现在我的问题是当我上传3mb文件时它正在上传。如果我想上传超过3mb的文件而不上传。 我的控制器代码是这样的。
byte[] fileData = null;
//Fetches the uploaded file
var httpPostedFileBase = Request.Files[0];
//Reads file data in Binary
if (httpPostedFileBase != null)
using (var binaryReader = new BinaryReader(httpPostedFileBase.InputStream))
{
fileData = binaryReader.ReadBytes(httpPostedFileBase.ContentLength);
}
//Create BO to save file in DB
var postedFileBase = Request.Files[0];
UploadFiles upload=new UploadFiles();
Docs doc = new Docs {ID = Id, Content = fileData};
if (postedFileBase != null) contractDoc.FileName = postedFileBase.FileName;
最后我打电话给webapi电话。在webapi中,我收到了错误。