Hello,
I have requirement to refresh the RADGrid after user download the
selection. So i have first column as checkboxes and users selects those
checkbox and as per the selection code gets the document and gives it
for download to user.
Response.ContentType = "text/plain";
Response.AddHeader("Content-Disposition", "attachment;filename=" + FileName);
Response.ClearContent();
Response.Buffer = true;
Response.Write(objBuilder.ToString());
Response.End();
So now i have to remove the selection after download and make those records of RADGrid with different color to indicate that record is already downloaded. how i can do that ?
Response.ContentType = "text/plain";
Response.AddHeader("Content-Disposition", "attachment;filename=" + FileName);
Response.ClearContent();
Response.Buffer = true;
Response.Write(objBuilder.ToString());
Response.End();
So now i have to remove the selection after download and make those records of RADGrid with different color to indicate that record is already downloaded. how i can do that ?