Hello,
This is my process.aspx.cs part of code on page load event
Bitmap bitMapImage = new
System.Drawing.Bitmap(Server.MapPath("Image/image002.jpg"));
Graphics graphicImage = Graphics.FromImage(bitMapImage);
graphicImage.SmoothingMode = SmoothingMode.AntiAlias;
graphicImage.DrawString(Request.QueryString["message"],
new Font("Arial", 12, FontStyle.Bold),
Brushes.Red, new Point(15, 125));
Response.ContentType = "image/jpeg";
//Save the new image to the
response output stream.
bitMapImage.Save(Response.OutputStream, ImageFormat.Jpeg);
graphicImage.Dispose();
bitMapImage.Dispose();
And in Process.aspx page I have added this line as you have said
<img src="process.aspx"/>
I have image and text selected on main page that is passed thru querry string
from querry string i have to take image and text to display rendered image .
and I dont need to save this image on my hard disk.
this is what i am tring to do
but in process.aspx page Image is displayed without any trouble but other elements on that page are not displayed