I have a RADWindow that will download a file to the user when they click a button on the window. The file (text/csv) is being downloaded successfully however appended to the file is all of the RADWindow html.
The following is the code used to download the file.
Thanks for any help.
The following is the code used to download the file.
Response.ContentType = "text/csv"
Response.AppendHeader("Content-Disposition", "attachment; filename=" & wrkFileName)
Response.TransmitFile(Server.MapPath(fileName))
Thanks for any help.