c# - Unable to upload large video file -


i trying upload large video file using file loader in asp.net project unable upload. made changes in web.config file not working. video small size upload problem occur in large video file uploading.

 <system.web>   <httpruntime maxrequestlength="1048576"/>      <pages validaterequest="false"/>     <compilation targetframework="4.5" defaultlanguage="c#" debug="true"/>     <machinekey validationkey="1234567890123456789012345678901234567890aaaaaaaaaa" decryptionkey="123456789012345678901234567890123456789012345678" validation="sha1" decryption="auto"/>     <customerrors mode="off"/>     <authentication mode="forms"/>     </system.web>   <system.webserver>     <security>       <requestfiltering>        <requestlimits maxallowedcontentlength="1073741824"/>       </requestfiltering>     </security>   </system.webserver> 

maxrequestlength takes priority on maxallowedcontentlength, since smaller.

try increasing value 1073741824.


Comments

Popular posts from this blog

angular - Is it possible to get native element for formControl? -

unity3d - Rotate an object to face an opposite direction -

javascript - Why jQuery Select box change event is now working? -