jmerencilla
Programmer
hi. im using CR for .NET. im trying to export a crystal report in pdf format. in my code there is a portion in which i specify the destination for the exported report. i notice that every time i export, my program creates a copy of the same report that is displayed in the browser, the same filename i provided in code which includes a time stamp to make it distinct from the other. would you guys know how not to create these "temporary files" because eventually, these files will occupy too much space in my drive? at the lower portion of my code is this:
Response.ClearContent()
Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.WriteFile(strFilename)
Response.Flush()
Response.Close()
thanks
Response.ClearContent()
Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.WriteFile(strFilename)
Response.Flush()
Response.Close()
thanks