Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C#

Web.config problem

i build app with MVC C# and i use this code in web.config i use this line of code to upload large file <system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="3600" />
</system.web>

but i found web not work i search on the web and i found another line <system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="104857600" />
</requestFiltering>
</security>
</system.webServer>

but i get another Error how i can solve this problem i need to upload video in my web with MVC forms