FlashUpload Control投掷IO错误:2038

问题描述:


我正在使用此处提到的Flash上​​传控件
使用进度条使用Flash和ASP.NET进行多个文件上传 [

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..



在花了很多小时之后,我找到了解决方案

在IIS 7.0中编写自定义http处理程序时,必须在
下编写
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>



我希望这将有助于您的未来发展

谢谢
萨比(Sabbi)



I hope this will help ur future developments

Thanks
Sabbi


请参阅此文章:

http://www.webtrenches.com/post.cfm/iis7-file-upload-size-limits
Refer this article:

http://www.webtrenches.com/post.cfm/iis7-file-upload-size-limits


我建​​议您首先确保运行IIS的帐户具有写入上载目录的权限.

如果这样做对您最好的选择还是无济于事,请在文章页面的底部进行讨论, ^ ].
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[^].