The default maximum filesize is 4MB.
Increasing the Maximum Upload Size
In Web.Config File, under <System.Web> write the follwing code:
<system.web> <httpRuntime executionTimeout="240" maxRequestLength="20480" /> </system.web>
Note: maxRequestLength is in KB's
Code-Behind Check:
{
}
else
{
LabelMsg.Text = "You cannot upload file of size greater than 20MB";
}