hi,
I am using fileupload control for uploading a file, but i want to check the file size before uploading and then upload if file is less than 2 MB.
protected void btnSendEmail_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(valibody))
{
if (FileAttachment.HasFile)
{
double filesize = FileAttachment.FileContent.Length;
double fsizeinMB = filesize / 1024;
if (filesize < 2000)
{
DIVResult.Style.Add("display", "block");
DIVMain.Style.Add("display", "none");
LBLResponse.Text = "Email Sent wit ...
Go to the complete details ...