S
Silvia
Hi,
I have aspx page, and this page go to another aspx i have that this second aspx return a image, how the first page can received the object system.drawing.image.
My code is that:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Response.Buffer = True
Dim lImage As System.Drawing.Image
lImage.FromFile(Request("Path"))
Response.End()
End Sub
It's OK???
And how I can view the image in the first page??
Thanks
Silvia
I have aspx page, and this page go to another aspx i have that this second aspx return a image, how the first page can received the object system.drawing.image.
My code is that:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Response.Buffer = True
Dim lImage As System.Drawing.Image
lImage.FromFile(Request("Path"))
Response.End()
End Sub
It's OK???
And how I can view the image in the first page??
Thanks
Silvia