Hi,
After Download file i want display Success Message and bind gridview data.No Error Message.But After Download does not bind gridview and label Message.
I have attached My code below.Give me any solution.
lblError.Text = "File Uploaded Successfully."
gvUtilityQuery.DataSource = dtUQ
gvUtilityQuery.DataBind()
With Response
.ContentType = "application/octet-stream"
.AppendHeader("Content-Disposition", "attachment;filename=" & strFileName & "")
.TransmitFile(strUploadedFilePath)
.End()
End With
lblError.Text = "File Uploaded Successfully."