Click here to Skip to main content
15,879,004 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
I am using Flash upload control which is mentioned here
Multiple File Upload With Progress Bar Using Flash and ASP.NET[^]

Problem is My web server is 2003 Previously now we are moved this solution to 2008 Web Server with IIS 7.0 now this control is not working in IIS

When uploading file it showing Error message :
There Has Been IO Error 2038
The http 404 error

Please give some info about this control patch for IIS 7.0

Thanks In Advance
Sabbi..
Posted
Updated 1-Oct-11 5:08am
v3
Comments
Faisal43 11-Apr-13 0:47am    
i am facing also same error but not on when i am uploading small size file when i upload more then 800MB file then this error occurs ... how can i over come ...

Hi,

After so many hours of spending on this I found the solution

When we wrote Custom http handlers in IIS 7.0 must be write under
<system.webserver>
<handlers>
<add name="MyCustomHandler" type="MyCustomHandler.type" verb="*" resourcetype="unspecified" />
</handlers>
</system.webserver>

not in
<system.web>
<httphandlers>
<add ...="">
</add></httphandlers>
</system.web>


I hope this will help ur future developments

Thanks
Sabbi
 
Share this answer
 
Refer this article:

http://www.webtrenches.com/post.cfm/iis7-file-upload-size-limits
 
Share this answer
 
I suggest you start by making sure that the account which runs the IIS has the rights to write to your upload directory.

If that doesn't help your best bet would be to ask the author of the article, there is a discussion at the bottom of the article page, here[^].
 
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