show/hide this revision's text 4 deleted 14 characters in body; added 18 characters in body

You can set the limit in the Web.Config

<system.web>
  <httpRuntime  maxRequestLength="xxxxx" executionTimeout="xx"/>
</system.web>

sidenote:

IIS7 will reject any file larger then 30 meg by default you can increase this by adding the following code

<security>
 <requestFiltering>
  <requestLimits maxAllowedContentLength=”XXXXXX″ />
 </requestFiltering>
</security>

EDIT:

If you are looking to get the content size before an upload you can Use should be able to use the HTTP method HEAD to retrieve Content-Length.

Implementation

show/hide this revision's text 3 addition based on another stackoverflow question REF:657826

You can set the limit in the Web.Config

<system.web>
  <httpRuntime  maxRequestLength="xxxxx" executionTimeout="xx"/>
</system.web>

sidenote:

IIS7 will reject any file larger then 30 meg by default you can increase this by adding the following code

<security>
 <requestFiltering>
  <requestLimits maxAllowedContentLength=”XXXXXX″ />
 </requestFiltering>
</security>

EDIT:

If you are looking to get the content size before an upload you can Use HTTP method HEAD to retrieve Content-Length.

Implementation

show/hide this revision's text 2 added 316 characters in body

You can set the limit in the web.configWeb.Config

<system.web>
  <httpRuntime  maxRequestLength="xxxxx" executionTimeout="xx"/>
</system.web>

sidenote:

IIS7 will reject any file larger then 30 meg by default you can increase this by adding the following code

<security>
 <requestFiltering>
  <requestLimits maxAllowedContentLength=”XXXXXX />
 </requestFiltering>
</security>
show/hide this revision's text 1