<t>If you are using IIS for hosting your application, then the default upload file size is 4MB. To increase it, please use this below section in your web.config -<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
```<br/>
<br/>
For IIS7 and above, you also need to add the lines below:<br/>
<br/>
```<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
```<br/>
<br/>
**Note**: <br/>
<br/>
- **`maxRequestLength`** is measured in **kilobytes**<br/>
<br/>
- **`maxAllowedContentLength`** is measured in **bytes** <br/>
<br/>
which is why the values differ in this config example. (Both are equivalent to 1 GB.)</t>