Urgent: (413) Request entity too large

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,

I'm using WinXP Pro with IIS 5.1, and my program in ASP.NET C#, I encounter
a problem with my program running locally.

Below is the error message: -

System.Net.WebException: The remote server returned an error: (413) Request
entity too large: start-line too large.

How to resolve this problem?
 
Thus wrote Mae,
Dear All,

I'm using WinXP Pro with IIS 5.1, and my program in ASP.NET C#, I
encounter a problem with my program running locally.

Below is the error message: -

System.Net.WebException: The remote server returned an error: (413)
Request entity too large: start-line too large.

How to resolve this problem?

What exactly are you doing? Can you post the code that breaks?

Cheers,
 
You may need to add something like this in web.config..but i'm unsure
if this is the issue due to the "start-line too large". What are you
doing when this error happens?

mb

<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="3600"/>
</system.web>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top