ทำยังไงให้มันโชว์ที่ Internet Explorer เลยโดยไม่ให้มี msgbox ขึ้นมาถาม Open / Save / Cancel คับ
รบกวนด้วยคับ
นี่โค้ด Get PDF คับ
Code
Imports System.IO
Imports System.Net
'### Set the appropriate ContentType.
Response.ContentType = "Application/pdf"
'### Get the physical path to the file.
Dim FilePath As String = MapPath("acrobat.pdf")
'### Write the file directly to the HTTP output stream.
Response.WriteFile(FilePath)
Response.End()