P
P.D.
How's it?
I have a web form with a meta tag to make it refresh
every four seconds:
<meta http-equiv="Refresh" content="4">
This works ok on its own, but if I put in the following
line in the code behind file (Page_Load() method), the
page won't refresh itself:
bmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg);
(bmp is a Bitmap instance).
It looks like if you write to the Response output stream,
it screws some (or all) of your meta tags!!
Can anyone shed some light??
Thanks
P.D.
I have a web form with a meta tag to make it refresh
every four seconds:
<meta http-equiv="Refresh" content="4">
This works ok on its own, but if I put in the following
line in the code behind file (Page_Load() method), the
page won't refresh itself:
bmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg);
(bmp is a Bitmap instance).
It looks like if you write to the Response output stream,
it screws some (or all) of your meta tags!!
Can anyone shed some light??
Thanks
P.D.