llmclaughlin
Programmer
Is there way with the code below to make the pdf open in new browser window?
Dim m_stream As New System.IO.MemoryStream()
m_stream.Position = 0
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", "inline; filename=MyExport.pdf")
Response.BinaryWrite(m_stream.ToArray())
Response.End()
Louie
Dim m_stream As New System.IO.MemoryStream()
m_stream.Position = 0
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", "inline; filename=MyExport.pdf")
Response.BinaryWrite(m_stream.ToArray())
Response.End()
Louie