Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to upload large files

Status
Not open for further replies.

TerryDad2

Programmer
Jul 10, 2002
29
0
0
US
The HttpPostedFile chokes on larger file sizes. Any other ideas to upload large file?
 
Here's a link for you:

penny1.gif
penny1.gif

The answer to getting answered -- faq855-2992
 
Thanks for the link. I was working with that parameter yesterday but was having difficulty. I got it to work.

The example on the link appears to have the incorrect capitalization though.
 
What was your solution? Would you post the correct version?

Thanks :)
paul
penny1.gif
penny1.gif

The answer to getting answered -- faq855-2992
 
The httpRuntime is not all caps, only the R.

<configuration>
<system.web>
<httpRuntime maxRequestLength=&quot;102400&quot; />
<authorization>
<deny users=&quot;?&quot;/>
</authorization>

</system.web>
</configuration>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top