Click here to Skip to main content
15,896,432 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I want to upload large files means in size that of 10 to 15 mb
Can you help me how to do these

Er. Tarun Suneja
Posted
Updated 27-Aug-09 16:39pm
v2

1 solution

This is not a Silverlight problem. In the web.config file, you need the following section:
<configuration><br />  <system.web><br />    <httpRuntime maxRequestLength="nnn" /><br />  </system.web><br /></configuration>
Set nnn to be the appropriate size in KB.

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900