Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Contributor
4358 Points
3709 Posts
Apr 10, 2007 03:59 PM|LINK
Marian Kostal You can set maximum request length in web.config <configuration> <system.web> <httpRuntime maxRequestLength="32768" /> </system.web> </configuration>
You can set maximum request length in web.config
<configuration> <system.web> <httpRuntime maxRequestLength="32768" /> </system.web> </configuration>
How do I write some errror checking code in my code behind to handle this error? Instead of keep increasing this number, I want to put out a friendly message to the user about the max size. How do I do that?
mychucky
Contributor
4358 Points
3709 Posts
Re: Maximum request length exceeded
Apr 10, 2007 03:59 PM|LINK
How do I write some errror checking code in my code behind to handle this error? Instead of keep increasing this number, I want to put out a friendly message to the user about the max size. How do I do that?