473,386 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

display new bitmap

I'm in a button clicked event on mainpage.aspx. I want to display a new
webpage that has just my image, which is a jpg. I want the page to be a
..jpg not an aspx so that it will be easy for the user to save to disk.

How can I do this?
Thanks,
T
Nov 17 '05 #1
11 3461
Hi,

change the ContentType and write the jpeg.
Response.ContentType = "image/jepg"
...
oBmp = New Bitmap(strPath)
...
oBmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg)

Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #2
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by just the
image. You might notice that I put Target="_blank" in an attempt to get it
to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
What does it come as? You're clearly telling the client that it's an
image/jpeg and you're saving it as such and I'm doing this all the time and it works just fine. Could you be more specific? Maybe you're saving more
than the image to the response or you're not setting the headers right...

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:uz**************@TK2MSFTNGP10.phx.gbl...
Natty,
That doesn't come through to the client browser as a .jpg and is there

fore
either impossible or very difficult for them to save the file as a .jpg.

I
do this all the time from static pages but can't seem to make it work from aspx pages and vb.net code.
Thanks,
T
"Natty Gur" <na***@dao2com.com> wrote in message
news:e1*************@TK2MSFTNGP11.phx.gbl...
Hi,

change the ContentType and write the jpeg.
Response.ContentType = "image/jepg"
..
oBmp = New Bitmap(strPath)
..
oBmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg)

Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Nov 17 '05 #3
You dont set the content header :

Response.ContentType = "image/jepg"
Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #4
Tina,

this is completely wrong. You're trying to send a jpeg image from Hires.aspx
yet you're sending HTML tags to the response. If you want to do that there
should be nothing (and I mean nothing) in the page except page directives
and server side script. In your case (using code behind) only the single
Page directive should be in your aspx file, like this:

<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>

Anything else (such as your HTML in it) will be sent down to the client
effectively breaking your jpeg image data. Of course a cleaner way is to
send it through a render function instead of in OnLoad event but from the
functionally point of view it doesn't matter.

BTW why do you create a file on your disk drive and then send it? Wouldn't
it be easier to send it directly without writing it to the drive?

Jerry
"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by just the image. You might notice that I put Target="_blank" in an attempt to get it to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
What does it come as? You're clearly telling the client that it's an
image/jpeg and you're saving it as such and I'm doing this all the time

and
it works just fine. Could you be more specific? Maybe you're saving more
than the image to the response or you're not setting the headers right...

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:uz**************@TK2MSFTNGP10.phx.gbl...
Natty,
That doesn't come through to the client browser as a .jpg and is there

fore
either impossible or very difficult for them to save the file as a
..jpg. I
do this all the time from static pages but can't seem to make it work

from aspx pages and vb.net code.
Thanks,
T
"Natty Gur" <na***@dao2com.com> wrote in message
news:e1*************@TK2MSFTNGP11.phx.gbl...
> Hi,
>
> change the ContentType and write the jpeg.
> Response.ContentType = "image/jepg"
> ..
> oBmp = New Bitmap(strPath)
> ..
> oBmp.Save(Response.OutputStream,
> System.Drawing.Imaging.ImageFormat.Jpeg)
>
> Natty Gur, CTO
> Dao2Com Ltd.
> 34th Elkalay st. Raanana
> Israel , 43000
> Phone Numbers:
> Office: +972-(0)9-7740261
> Fax: +972-(0)9-7740261
> Mobile: +972-(0)58-888377
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



Nov 17 '05 #5
Jerry,
The problem is:
First, the desired solution is...
The user is interacting with Webform1.aspx. A button on that form should
bring up a new browser window where the url is a .jpg and the image is
displayed in that new browser window. Because the url is a .jpg, the user
can easily save it to his local disk. He can then continue interacting with
webform1, bringing up new pictures and saving them as desired.

What is happening is...
when the user hit's the button on Webform1, everything on webform1 is wiped
out and replaced by the hi res picture. The url still says
www.mysite.com/myApp/Webform1.aspx. This is all bad because (1) Webform1
got wiped out and user needs to back arrow to continue and (2) the user
can't save the image because the url is not a .jpg.

I think this, coupled with my description below pretty much describes this
problem I am having.
Thanks for bearing with me so far,
T

"Jerry III" <je******@hotmail.com> wrote in message
news:Ow**************@tk2msftngp13.phx.gbl...
Take my last message back (well, you should still clean up the page, if
you're sending an image then there should be no HTML for clarity).

You're saying that the image renders fine on the client side, what exactly
is the problem then?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by just

the
image. You might notice that I put Target="_blank" in an attempt to get

it
to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
What does it come as? You're clearly telling the client that it's an
image/jpeg and you're saving it as such and I'm doing this all the time
and
it works just fine. Could you be more specific? Maybe you're saving
more than the image to the response or you're not setting the headers right...
Jerry

"Tina" <ti**********@excite.com> wrote in message
news:uz**************@TK2MSFTNGP10.phx.gbl...
> Natty,
> That doesn't come through to the client browser as a .jpg and is there fore
> either impossible or very difficult for them to save the file as a .jpg. I
> do this all the time from static pages but can't seem to make it

work from
> aspx pages and vb.net code.
> Thanks,
> T
> "Natty Gur" <na***@dao2com.com> wrote in message
> news:e1*************@TK2MSFTNGP11.phx.gbl...
> > Hi,
> >
> > change the ContentType and write the jpeg.
> > Response.ContentType = "image/jepg"
> > ..
> > oBmp = New Bitmap(strPath)
> > ..
> > oBmp.Save(Response.OutputStream,
> > System.Drawing.Imaging.ImageFormat.Jpeg)
> >
> > Natty Gur, CTO
> > Dao2Com Ltd.
> > 34th Elkalay st. Raanana
> > Israel , 43000
> > Phone Numbers:
> > Office: +972-(0)9-7740261
> > Fax: +972-(0)9-7740261
> > Mobile: +972-(0)58-888377
> >
> >
> > *** Sent via Developersdex http://www.developersdex.com ***
> > Don't just participate in USENET...get rewarded for it!
>
>



Nov 17 '05 #6
Ok, your right. I put that in my code and it made no difference.
Thanks,
T

"Natty Gur" <na***@dao2com.com> wrote in message
news:eg**************@tk2msftngp13.phx.gbl...
You dont set the content header :

Response.ContentType = "image/jepg"
Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #7
You need to set the target attribute to _blank on your form to open the
image in a new window. Like this:

<form target="_blank"...>...</form>

Or you can use a link (<a>) with the same attribute.

If I understand you correctly you don't have a problem displaying the image,
right? You just want it to open in a new window?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:un**************@TK2MSFTNGP11.phx.gbl...
Jerry,
The problem is:
First, the desired solution is...
The user is interacting with Webform1.aspx. A button on that form should
bring up a new browser window where the url is a .jpg and the image is
displayed in that new browser window. Because the url is a .jpg, the user
can easily save it to his local disk. He can then continue interacting with webform1, bringing up new pictures and saving them as desired.

What is happening is...
when the user hit's the button on Webform1, everything on webform1 is wiped out and replaced by the hi res picture. The url still says
www.mysite.com/myApp/Webform1.aspx. This is all bad because (1) Webform1
got wiped out and user needs to back arrow to continue and (2) the user
can't save the image because the url is not a .jpg.

I think this, coupled with my description below pretty much describes this
problem I am having.
Thanks for bearing with me so far,
T

"Jerry III" <je******@hotmail.com> wrote in message
news:Ow**************@tk2msftngp13.phx.gbl...
Take my last message back (well, you should still clean up the page, if
you're sending an image then there should be no HTML for clarity).

You're saying that the image renders fine on the client side, what exactly
is the problem then?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false" Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by
just the
image. You might notice that I put Target="_blank" in an attempt to
get it
to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
> What does it come as? You're clearly telling the client that it's an
> image/jpeg and you're saving it as such and I'm doing this all the

time and
> it works just fine. Could you be more specific? Maybe you're saving more > than the image to the response or you're not setting the headers

right...
>
> Jerry
>
> "Tina" <ti**********@excite.com> wrote in message
> news:uz**************@TK2MSFTNGP10.phx.gbl...
> > Natty,
> > That doesn't come through to the client browser as a .jpg and is there > fore
> > either impossible or very difficult for them to save the file as a

.jpg.
> I
> > do this all the time from static pages but can't seem to make it work from
> > aspx pages and vb.net code.
> > Thanks,
> > T
> > "Natty Gur" <na***@dao2com.com> wrote in message
> > news:e1*************@TK2MSFTNGP11.phx.gbl...
> > > Hi,
> > >
> > > change the ContentType and write the jpeg.
> > > Response.ContentType = "image/jepg"
> > > ..
> > > oBmp = New Bitmap(strPath)
> > > ..
> > > oBmp.Save(Response.OutputStream,
> > > System.Drawing.Imaging.ImageFormat.Jpeg)
> > >
> > > Natty Gur, CTO
> > > Dao2Com Ltd.
> > > 34th Elkalay st. Raanana
> > > Israel , 43000
> > > Phone Numbers:
> > > Office: +972-(0)9-7740261
> > > Fax: +972-(0)9-7740261
> > > Mobile: +972-(0)58-888377
> > >
> > >
> > > *** Sent via Developersdex http://www.developersdex.com ***
> > > Don't just participate in USENET...get rewarded for it!
> >
> >
>
>



Nov 17 '05 #8
Maybe this will help. I set the NavigateUrl in code to a aspx file which
streams the picture, but this bit puts it in a new window.

<asp:HyperLink id="zoom1" name="vlarge"

onclick="vlarge1=window.open
('','vlarge','resizable=no,scrollbars=no,status=no ,toolbar=no,height=450,wid
th=575,left=50,top=100');vlarge1.focus();return true;"

onmouseover="window.status='Click here for full sized picture.';return
true"
onmouseout="window.status=''; return true;"
text="(click here for full size)"
target="vlarge" tooltip = "Click here for full sized picture."
runat="server"/>

"Jerry III" <je******@hotmail.com> wrote in message
news:OK*************@TK2MSFTNGP10.phx.gbl...
Tina,

this is completely wrong. You're trying to send a jpeg image from Hires.aspx yet you're sending HTML tags to the response. If you want to do that there
should be nothing (and I mean nothing) in the page except page directives
and server side script. In your case (using code behind) only the single
Page directive should be in your aspx file, like this:

<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>

Anything else (such as your HTML in it) will be sent down to the client
effectively breaking your jpeg image data. Of course a cleaner way is to
send it through a render function instead of in OnLoad event but from the
functionally point of view it doesn't matter.

BTW why do you create a file on your disk drive and then send it? Wouldn't
it be easier to send it directly without writing it to the drive?

Jerry
"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by just

the
image. You might notice that I put Target="_blank" in an attempt to get

it
to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
What does it come as? You're clearly telling the client that it's an
image/jpeg and you're saving it as such and I'm doing this all the time
and
it works just fine. Could you be more specific? Maybe you're saving
more than the image to the response or you're not setting the headers right...
Jerry

"Tina" <ti**********@excite.com> wrote in message
news:uz**************@TK2MSFTNGP10.phx.gbl...
> Natty,
> That doesn't come through to the client browser as a .jpg and is there fore
> either impossible or very difficult for them to save the file as a .jpg. I
> do this all the time from static pages but can't seem to make it

work from
> aspx pages and vb.net code.
> Thanks,
> T
> "Natty Gur" <na***@dao2com.com> wrote in message
> news:e1*************@TK2MSFTNGP11.phx.gbl...
> > Hi,
> >
> > change the ContentType and write the jpeg.
> > Response.ContentType = "image/jepg"
> > ..
> > oBmp = New Bitmap(strPath)
> > ..
> > oBmp.Save(Response.OutputStream,
> > System.Drawing.Imaging.ImageFormat.Jpeg)
> >
> > Natty Gur, CTO
> > Dao2Com Ltd.
> > 34th Elkalay st. Raanana
> > Israel , 43000
> > Phone Numbers:
> > Office: +972-(0)9-7740261
> > Fax: +972-(0)9-7740261
> > Mobile: +972-(0)58-888377
> >
> >
> > *** Sent via Developersdex http://www.developersdex.com ***
> > Don't just participate in USENET...get rewarded for it!
>
>



Nov 17 '05 #9
Just use the target attribute. This approach won't work if javascript is
off, target attribute works always. Unless you want to control the windows
appearance but it's just nicer to leave that up to the user.

"vMike" <Mi************@gewarren.com.nospam> wrote in message
news:bg**********@ngspool-d02.news.aol.com...
Maybe this will help. I set the NavigateUrl in code to a aspx file which
streams the picture, but this bit puts it in a new window.

<asp:HyperLink id="zoom1" name="vlarge"

onclick="vlarge1=window.open
('','vlarge','resizable=no,scrollbars=no,status=no ,toolbar=no,height=450,wid th=575,left=50,top=100');vlarge1.focus();return true;"

onmouseover="window.status='Click here for full sized picture.';return
true"
onmouseout="window.status=''; return true;"
text="(click here for full size)"
target="vlarge" tooltip = "Click here for full sized picture."
runat="server"/>

"Jerry III" <je******@hotmail.com> wrote in message
news:OK*************@TK2MSFTNGP10.phx.gbl...
Tina,

this is completely wrong. You're trying to send a jpeg image from

Hires.aspx
yet you're sending HTML tags to the response. If you want to do that there
should be nothing (and I mean nothing) in the page except page directives and server side script. In your case (using code behind) only the single
Page directive should be in your aspx file, like this:

<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false"
Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>

Anything else (such as your HTML in it) will be sent down to the client
effectively breaking your jpeg image data. Of course a cleaner way is to
send it through a render function instead of in OnLoad event but from the functionally point of view it doesn't matter.

BTW why do you create a file on your disk drive and then send it? Wouldn't it be easier to send it directly without writing it to the drive?

Jerry
"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
there are two pages involved, webform1.aspx and HiRes.aspx. In
Webform1.aspx I write a .jpg to the root of d: and do :
Server.Transfer("HiRes.aspx")

HiRes.aspx is as follows:
<%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false" Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>test</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body MS_POSITIONING="GridLayout">

<form id="Form1" target="_blank" method="post" runat="server">

</form>

</body>
</html>

and the CodeBehind for hires.aspx is as follows:

Imports System.Drawing.Imaging
Public Class HiRes
Inherits System.Web.UI.Page

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Response.Clear()
Dim oBmp As Bitmap
oBmp = New Bitmap("d:\bigpic.jpg")
oBmp.Save(Response.OutputStream, imageformat.jpeg)
Response.End()
End Sub
End Class

What happens is that the picture does indeed get written but to
webform1.aspx. What was in webform1.aspx is completely replaced by
just the
image. You might notice that I put Target="_blank" in an attempt to
get it
to display a new i.e. page.
Thanks,
T
"Jerry III" <je******@hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP10.phx.gbl...
> What does it come as? You're clearly telling the client that it's an
> image/jpeg and you're saving it as such and I'm doing this all the

time and
> it works just fine. Could you be more specific? Maybe you're saving more > than the image to the response or you're not setting the headers

right...
>
> Jerry
>
> "Tina" <ti**********@excite.com> wrote in message
> news:uz**************@TK2MSFTNGP10.phx.gbl...
> > Natty,
> > That doesn't come through to the client browser as a .jpg and is there > fore
> > either impossible or very difficult for them to save the file as a

.jpg.
> I
> > do this all the time from static pages but can't seem to make it work from
> > aspx pages and vb.net code.
> > Thanks,
> > T
> > "Natty Gur" <na***@dao2com.com> wrote in message
> > news:e1*************@TK2MSFTNGP11.phx.gbl...
> > > Hi,
> > >
> > > change the ContentType and write the jpeg.
> > > Response.ContentType = "image/jepg"
> > > ..
> > > oBmp = New Bitmap(strPath)
> > > ..
> > > oBmp.Save(Response.OutputStream,
> > > System.Drawing.Imaging.ImageFormat.Jpeg)
> > >
> > > Natty Gur, CTO
> > > Dao2Com Ltd.
> > > 34th Elkalay st. Raanana
> > > Israel , 43000
> > > Phone Numbers:
> > > Office: +972-(0)9-7740261
> > > Fax: +972-(0)9-7740261
> > > Mobile: +972-(0)58-888377
> > >
> > >
> > > *** Sent via Developersdex http://www.developersdex.com ***
> > > Don't just participate in USENET...get rewarded for it!
> >
> >
>
>



Nov 17 '05 #10
Again, as you can see in my example, I have target="_blank" and it does not
have any effect.
T
"Jerry III" <je******@hotmail.com> wrote in message
news:ut*************@TK2MSFTNGP10.phx.gbl...
You need to set the target attribute to _blank on your form to open the
image in a new window. Like this:

<form target="_blank"...>...</form>

Or you can use a link (<a>) with the same attribute.

If I understand you correctly you don't have a problem displaying the image, right? You just want it to open in a new window?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:un**************@TK2MSFTNGP11.phx.gbl...
Jerry,
The problem is:
First, the desired solution is...
The user is interacting with Webform1.aspx. A button on that form should
bring up a new browser window where the url is a .jpg and the image is
displayed in that new browser window. Because the url is a .jpg, the user can easily save it to his local disk. He can then continue interacting

with
webform1, bringing up new pictures and saving them as desired.

What is happening is...
when the user hit's the button on Webform1, everything on webform1 is

wiped
out and replaced by the hi res picture. The url still says
www.mysite.com/myApp/Webform1.aspx. This is all bad because (1) Webform1 got wiped out and user needs to back arrow to continue and (2) the user
can't save the image because the url is not a .jpg.

I think this, coupled with my description below pretty much describes this problem I am having.
Thanks for bearing with me so far,
T

"Jerry III" <je******@hotmail.com> wrote in message
news:Ow**************@tk2msftngp13.phx.gbl...
Take my last message back (well, you should still clean up the page, if you're sending an image then there should be no HTML for clarity).

You're saying that the image renders fine on the client side, what exactly is the problem then?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> there are two pages involved, webform1.aspx and HiRes.aspx. In
> Webform1.aspx I write a .jpg to the root of d: and do :
> Server.Transfer("HiRes.aspx")
>
> HiRes.aspx is as follows:
> <%@ Page Language="vb" ContentType="image/jpeg" AutoEventWireup="false" > Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <html>
> <head>
> <title>test</title>
> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> > <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> <meta name=vs_defaultClientScript content="JavaScript">
> <meta name=vs_targetSchema
> content="http://schemas.microsoft.com/intellisense/ie5">
> </head>
> <body MS_POSITIONING="GridLayout">
>
> <form id="Form1" target="_blank" method="post" runat="server">
>
> </form>
>
> </body>
> </html>
>
> and the CodeBehind for hires.aspx is as follows:
>
> Imports System.Drawing.Imaging
> Public Class HiRes
> Inherits System.Web.UI.Page
>
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
> Response.Clear()
> Dim oBmp As Bitmap
> oBmp = New Bitmap("d:\bigpic.jpg")
> oBmp.Save(Response.OutputStream, imageformat.jpeg)
> Response.End()
> End Sub
> End Class
>
> What happens is that the picture does indeed get written but to
> webform1.aspx. What was in webform1.aspx is completely replaced by just the
> image. You might notice that I put Target="_blank" in an attempt to get it
> to display a new i.e. page.
> Thanks,
> T
> "Jerry III" <je******@hotmail.com> wrote in message
> news:uL**************@TK2MSFTNGP10.phx.gbl...
> > What does it come as? You're clearly telling the client that it's an > > image/jpeg and you're saving it as such and I'm doing this all the

time
> and
> > it works just fine. Could you be more specific? Maybe you're saving more
> > than the image to the response or you're not setting the headers
right...
> >
> > Jerry
> >
> > "Tina" <ti**********@excite.com> wrote in message
> > news:uz**************@TK2MSFTNGP10.phx.gbl...
> > > Natty,
> > > That doesn't come through to the client browser as a .jpg and is

there
> > fore
> > > either impossible or very difficult for them to save the file as

a .jpg.
> > I
> > > do this all the time from static pages but can't seem to make it

work
> from
> > > aspx pages and vb.net code.
> > > Thanks,
> > > T
> > > "Natty Gur" <na***@dao2com.com> wrote in message
> > > news:e1*************@TK2MSFTNGP11.phx.gbl...
> > > > Hi,
> > > >
> > > > change the ContentType and write the jpeg.
> > > > Response.ContentType = "image/jepg"
> > > > ..
> > > > oBmp = New Bitmap(strPath)
> > > > ..
> > > > oBmp.Save(Response.OutputStream,
> > > > System.Drawing.Imaging.ImageFormat.Jpeg)
> > > >
> > > > Natty Gur, CTO
> > > > Dao2Com Ltd.
> > > > 34th Elkalay st. Raanana
> > > > Israel , 43000
> > > > Phone Numbers:
> > > > Office: +972-(0)9-7740261
> > > > Fax: +972-(0)9-7740261
> > > > Mobile: +972-(0)58-888377
> > > >
> > > >
> > > > *** Sent via Developersdex http://www.developersdex.com ***
> > > > Don't just participate in USENET...get rewarded for it!
> > >
> > >
> >
> >
>
>



Nov 17 '05 #11
Do you have this online where we could look at it?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:OR*************@tk2msftngp13.phx.gbl...
Again, as you can see in my example, I have target="_blank" and it does not have any effect.
T
"Jerry III" <je******@hotmail.com> wrote in message
news:ut*************@TK2MSFTNGP10.phx.gbl...
You need to set the target attribute to _blank on your form to open the
image in a new window. Like this:

<form target="_blank"...>...</form>

Or you can use a link (<a>) with the same attribute.

If I understand you correctly you don't have a problem displaying the image,
right? You just want it to open in a new window?

Jerry

"Tina" <ti**********@excite.com> wrote in message
news:un**************@TK2MSFTNGP11.phx.gbl...
Jerry,
The problem is:
First, the desired solution is...
The user is interacting with Webform1.aspx. A button on that form should bring up a new browser window where the url is a .jpg and the image is
displayed in that new browser window. Because the url is a .jpg, the user can easily save it to his local disk. He can then continue interacting
with
webform1, bringing up new pictures and saving them as desired.

What is happening is...
when the user hit's the button on Webform1, everything on webform1 is

wiped
out and replaced by the hi res picture. The url still says
www.mysite.com/myApp/Webform1.aspx. This is all bad because (1) Webform1 got wiped out and user needs to back arrow to continue and (2) the
user can't save the image because the url is not a .jpg.

I think this, coupled with my description below pretty much describes this problem I am having.
Thanks for bearing with me so far,
T

"Jerry III" <je******@hotmail.com> wrote in message
news:Ow**************@tk2msftngp13.phx.gbl...
> Take my last message back (well, you should still clean up the page, if > you're sending an image then there should be no HTML for clarity).
>
> You're saying that the image renders fine on the client side, what

exactly
> is the problem then?
>
> Jerry
>
> "Tina" <ti**********@excite.com> wrote in message
> news:%2****************@TK2MSFTNGP10.phx.gbl...
> > there are two pages involved, webform1.aspx and HiRes.aspx. In
> > Webform1.aspx I write a .jpg to the root of d: and do :
> > Server.Transfer("HiRes.aspx")
> >
> > HiRes.aspx is as follows:
> > <%@ Page Language="vb" ContentType="image/jpeg"

AutoEventWireup="false"
> > Codebehind="HiRes.aspx.vb" Inherits="DBAPhotoQuery.HiRes"%>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <html>
> > <head>
> > <title>test</title>
> > <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> > > <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
> > <meta name=vs_defaultClientScript content="JavaScript">
> > <meta name=vs_targetSchema
> > content="http://schemas.microsoft.com/intellisense/ie5">
> > </head>
> > <body MS_POSITIONING="GridLayout">
> >
> > <form id="Form1" target="_blank" method="post" runat="server">
> >
> > </form>
> >
> > </body>
> > </html>
> >
> > and the CodeBehind for hires.aspx is as follows:
> >
> > Imports System.Drawing.Imaging
> > Public Class HiRes
> > Inherits System.Web.UI.Page
> >
> > Private Sub Page_Load(ByVal sender As System.Object, ByVal e As > > System.EventArgs) Handles MyBase.Load
> > Response.Clear()
> > Dim oBmp As Bitmap
> > oBmp = New Bitmap("d:\bigpic.jpg")
> > oBmp.Save(Response.OutputStream, imageformat.jpeg)
> > Response.End()
> > End Sub
> > End Class
> >
> > What happens is that the picture does indeed get written but to
> > webform1.aspx. What was in webform1.aspx is completely replaced by just
> the
> > image. You might notice that I put Target="_blank" in an attempt
to
get
> it
> > to display a new i.e. page.
> > Thanks,
> > T
> > "Jerry III" <je******@hotmail.com> wrote in message
> > news:uL**************@TK2MSFTNGP10.phx.gbl...
> > > What does it come as? You're clearly telling the client that

it's an > > > image/jpeg and you're saving it as such and I'm doing this all
the time
> > and
> > > it works just fine. Could you be more specific? Maybe you're
saving more
> > > than the image to the response or you're not setting the headers
> right...
> > >
> > > Jerry
> > >
> > > "Tina" <ti**********@excite.com> wrote in message
> > > news:uz**************@TK2MSFTNGP10.phx.gbl...
> > > > Natty,
> > > > That doesn't come through to the client browser as a .jpg and is there
> > > fore
> > > > either impossible or very difficult for them to save the file as a
> .jpg.
> > > I
> > > > do this all the time from static pages but can't seem to make

it work
> > from
> > > > aspx pages and vb.net code.
> > > > Thanks,
> > > > T
> > > > "Natty Gur" <na***@dao2com.com> wrote in message
> > > > news:e1*************@TK2MSFTNGP11.phx.gbl...
> > > > > Hi,
> > > > >
> > > > > change the ContentType and write the jpeg.
> > > > > Response.ContentType = "image/jepg"
> > > > > ..
> > > > > oBmp = New Bitmap(strPath)
> > > > > ..
> > > > > oBmp.Save(Response.OutputStream,
> > > > > System.Drawing.Imaging.ImageFormat.Jpeg)
> > > > >
> > > > > Natty Gur, CTO
> > > > > Dao2Com Ltd.
> > > > > 34th Elkalay st. Raanana
> > > > > Israel , 43000
> > > > > Phone Numbers:
> > > > > Office: +972-(0)9-7740261
> > > > > Fax: +972-(0)9-7740261
> > > > > Mobile: +972-(0)58-888377
> > > > >
> > > > >
> > > > > *** Sent via Developersdex http://www.developersdex.com ***
> > > > > Don't just participate in USENET...get rewarded for it!
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Nicolas Poirier | last post by:
Is there a simple way to display a small bitmap in a way that it fills the whole background of a form? I mean a mosaic of small bitmaps like the ones used to cover my desktop's background. Thank...
1
by: serge calderara | last post by:
Dear all, Is there a way to display bitmaps inside a datagrid ? regards serge
2
by: Paul Nuschke | last post by:
Anyone know how to display a bitmap from an array using ATL, MFC, et al. Thanks, Paul Nuschke
3
by: serge calderara | last post by:
Dear all I have a datagrid which is bind to a dataset On column in the dataset represent a STATUS Instead of diplaying in my datagrid value of 1 and 0 corresponding to that STATUS field, I...
3
by: serge calderara | last post by:
Dear all, how to display bitmap inside column template ? I have use following syntax : <asp:ButtonColumn Text='<%# <img src= "search.gif" >%>/></asp:ButtonColumn but when running it says,...
3
by: srinpraveen | last post by:
I want to put a bitmap image which I have created using Microsoft paint onto my C++ program. I am working in Turbo C++ environment. How do I implement it? I found that putimage() attribute does not...
6
saranjegan
by: saranjegan | last post by:
can we display bitmap image using C programming..which compiler suits best.. let me know the steps fallowed for displaying the bmp image thanks for your time
1
by: mallyajiggs | last post by:
form_load () { Call bitmap_func() } bitmap_func() { Image mybitmap = new Bitmap("c:\\abc.bmp"); Graphics g1 = Graphics.FromImage(mybitmap); ...
1
by: davidpryce123 | last post by:
Dear Group. For an application I am developing I need to display a 64 bit bitmap as a compressed ascii string of bits. This is to allow for the easier understanding of the bits for the users....
4
by: bruffchewren | last post by:
Hi there dear gurus and expert coders. i am not gonna start with im a newbie and don't know much about image programming but unfortunately those are the facts :( I am trying to display an image...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.