file up to certain size (say, I would like to limit the user to upload
at the maximum 1 meg of file) ?
Thank youSince there is no way for you to tell from the server-side how big the user's
file is, you simply check the UploadedFile object's size at the server and
reject it with the appropriate message to the user.
--Peter
"Inside every large program, there is a small program trying to get out."
http://www.eggheadcafe.com
http://petesbloggerama.blogspot.com
http://www.blogmetafinder.com
"fiefie.niles@.gmail.com" wrote:
Quote:
Originally Posted by
In ASP.Net (VS 2005), is there a way to limit the user to upload a
file up to certain size (say, I would like to limit the user to upload
at the maximum 1 meg of file) ?
Thank you
>
I suppose Peter was talking about HttpPostedFile.ContentLength property :)
--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour
"fiefie.niles@.gmail.com" wrote:
Quote:
Originally Posted by
In ASP.Net (VS 2005), is there a way to limit the user to upload a
file up to certain size (say, I would like to limit the user to upload
at the maximum 1 meg of file) ?
Thank you
>
re:
!I would like to limit the user to upload at the maximum 1 meg of file
Iy's very simple...
In web.config :
<httpRuntime maxRequestLength="1024"/>
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaol : http://asp.net.do/foros/
======================================
<fiefie.niles@.gmail.comwrote in message news:28988e20-c2f8-4abe-b25a-32e5a334e155@.l22g2000hsc.googlegroups.com...
Quote:
Originally Posted by
In ASP.Net (VS 2005), is there a way to limit the user to upload a
file up to certain size (say, I would like to limit the user to upload
at the maximum 1 meg of file) ?
Thank you
re:
!Since there is no way for you to tell from the server-side how big the user's file is
There isn't any way to do that, but you can limit the maximum size for any uploaded file.
See my just-sent-in tip.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaol : http://asp.net.do/foros/
======================================
"Peter Bromberg [C# MVP]" <pbromberg@.yahoo.NoSpamMaam.comwrote in message
news:FD220D8D-0CE2-4D94-9D0E-12A497AF8F1C@.microsoft.com...
Quote:
Originally Posted by
Since there is no way for you to tell from the server-side how big the user's
file is, you simply check the UploadedFile object's size at the server and
reject it with the appropriate message to the user.
>
--Peter
"Inside every large program, there is a small program trying to get out."
http://www.eggheadcafe.com
http://petesbloggerama.blogspot.com
http://www.blogmetafinder.com
>
>
>
"fiefie.niles@.gmail.com" wrote:
>
Quote:
Originally Posted by
>In ASP.Net (VS 2005), is there a way to limit the user to upload a
>file up to certain size (say, I would like to limit the user to upload
>at the maximum 1 meg of file) ?
>Thank you
>>
It should be noted that this entry will limit the size of all HTTP requests
for all pages controlled by that web.config. You can, however, put the
"upload file" page in its own sub-folder and put a web.config in that folder
with the appropriate settings. For example, you might also want to adjust
the timeout value to allow for slow uploads, etc.
I guess my point is, the upload settings for files is probably different
than for "regular" requests, so consider putting pages that upload files
into their own sub-folder with their own web.config.
Quote:
Originally Posted by
!I would like to limit the user to upload at the maximum 1 meg of file
>
Iy's very simple...
>
In web.config :
>
<httpRuntime maxRequestLength="1024"/>
Hmmm... a bit nitpicky, but true.
I say nitpicky because I've been trying to figure out what an http request larger than
1MB looks like, other than an uploaded file...and can't come up with a valid example.
However, for comprehensiveness sake, ( just in case a request is made which isn't
an uploaded file but is larger than 1MB ) the following web.config entry would cover all bases :
<configuration>
<location path="UploadPage.aspx">
<httpRuntime maxRequestLength="1024"/>
</location>
</configuration>
Notice that the entry can be located in the root web.config.
A separate web.config is not needed.
If the upload aspx is in a different directory, including the path will do fine :
<location path="/directory/UploadPage.aspx">
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaol : http://asp.net.do/foros/
======================================
"Scott Roberts" <sroberts@.no.spam.here-webworks-software.comwrote in message
news:u2F1T%23lKIHA.5328@.TK2MSFTNGP05.phx.gbl...
Quote:
Originally Posted by
It should be noted that this entry will limit the size of all HTTP requests for all pages controlled by that
web.config. You can, however, put the "upload file" page in its own sub-folder and put a web.config in that folder
with the appropriate settings. For example, you might also want to adjust the timeout value to allow for slow uploads,
etc.
>
I guess my point is, the upload settings for files is probably different than for "regular" requests, so consider
putting pages that upload files into their own sub-folder with their own web.config.
>
>
Quote:
Originally Posted by
>!I would like to limit the user to upload at the maximum 1 meg of file
>>
>Iy's very simple...
>>
>In web.config :
>>
><httpRuntime maxRequestLength="1024"/>
>
0 comments:
Post a Comment