T
tma
First, I'm following instructions without truly understanding them, so go
easy on me...
I am exporting a report to .PDF. Below is a code snippet. What I would like
is for a new IE instance to be launched with the .pdf instead of the current
IE window/aspx page. (My real problem is the window with which I am viewing
the pdf does not go back to the page that launched the export but rather the
page prior to it!) What do I need to change below to accomplish this?
crReport.Export()
Response.ClearContent()
Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.WriteFile(Fname)
Response.Flush()
Response.Close()
Thanks!
easy on me...
I am exporting a report to .PDF. Below is a code snippet. What I would like
is for a new IE instance to be launched with the .pdf instead of the current
IE window/aspx page. (My real problem is the window with which I am viewing
the pdf does not go back to the page that launched the export but rather the
page prior to it!) What do I need to change below to accomplish this?
crReport.Export()
Response.ClearContent()
Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.WriteFile(Fname)
Response.Flush()
Response.Close()
Thanks!