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.
