asp.net mvc 3 - MVC3 Windows input type="file" size limit -



asp.net mvc 3 - MVC3 Windows input type="file" size limit -

i have mvc3 c#.net web app. in html view, using standard windows file input

<input style="border:thin solid #ccc;width:270px; background-color: #ffffff;" type="file" name="name" id="name"/>

it's working fine except big files. can upload 2mb file bit not 4mb file. there max file size input type or can set maxsize somehow?

try changing maxrequestlength in web.config.

<system.web> <httpruntime maxrequestlength="4096" /> </system.web>

the value in kilobytes. 4096 default value, file might larger maybe seek higher number.

asp.net-mvc-3 file-upload input

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -