User288213138 posted
Hi dlchase,
You can try to
increase the maximum upload file size in IIS by following steps:
1. To modify the maxAllowedContentLength setting in the web.config
2. To edit the features settings by filtering and enable the desired limit in the IIS manager
3. To manually edit the file ApplicationHost.config
And you can try this way to check the size of files in jquery:
The code:
<div>
<input type="file" id="myFile" />
</div>
<script>
$(document).ready(function () {
$("#myFile").change(function () {
alert($("#myFile")[0].files[0].size);
})
})
</script>
The result:

Best regards,
Sam