Hello Experts
when i am uploading less then 30 m.b file it's uploading.when i am trying to uploading more then 30 m.b it's not uploading J query.
web config maxRequestLength
<httpRuntime maxRequestLength="1048576"/>
below plugin i am using.
http://www.plupload.com/examples/
function LoadplUpload(UserId, RFQId) {
$("#uploader").pluploadQueue({
// General settings
url: "../Handlers/PAPVendorRequirementSubmission.ashx?MethodName=UploadFilesVendorResult&rfqId=" + RFQId,
runtimes: 'html5,flash,silverlight,html4',
max_file_size: '100mb',
chunk_size: '100mb',
unique_names: true,
filters: [
{ title: "All files", extensions: "ppt,pptx,jpg,gif,tiff,tif,png,psd,zip,rar,tar,txt,doc,docx,xls,xlsx,pdf" },
{ title: "Image files", extensions: "jpg,gif,tiff,tif ...
Go to the complete details ...