T
Tony
Hello!
Below is my my code located in the Page_Load. When I run this I will only
see this.
GIF89a,2????????????????????????????3f???3333f3?3?3?ff3fff?f?f???3?f????????3?f???????3?f??????3333f3?3?3?3333333f33?33?33?3f3f33ff3f?3f?3f?3?3?33?f3??3??3??3?3?33?f3?3??3??3?3?33?f3??3??3??ff3fff?f?f?f3f33f3ff3?f3?f3?ffff3fffff?ff?ff?f?f?3f?ff??f??f??f?f?3f?ff?f??f??f?f?3f?ff??f??f????3?f??????3?33?3f?3??3?3??f?f3?ff?f??f?f?????3??f????????????3??f???????????3??f??????????3?f???????3?33?3f?3??3??3??f?f3?ff?f??f??f???3?f??????????3??f????????????3??f???????????3?f???????3?33?3f?3??3??3??f?f3?ff?f??f??f?????3??f?????????????3??f????????????3??f?????????!?,,2??
H????*\??Ç#J?H???3j???I C?I???(S?\???0c?I???8s?????@?
J???H?*]???P?J?J???X?j????`ÊK???h?]???p??K???x???????L???È+^???i#K?L????3k?????C?M????S?^?Zo@;
Can somebody explain what I have to do to get my yellow recatngle in the
browser ?
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Text;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Bitmap image = new Bitmap(300, 50);
Graphics g = Graphics.FromImage(image);
g.FillRectangle(Brushes.Yellow, 0, 0, 300, 50);
image.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Gif);
}
}
//Tony
Below is my my code located in the Page_Load. When I run this I will only
see this.
GIF89a,2????????????????????????????3f???3333f3?3?3?ff3fff?f?f???3?f????????3?f???????3?f??????3333f3?3?3?3333333f33?33?33?3f3f33ff3f?3f?3f?3?3?33?f3??3??3??3?3?33?f3?3??3??3?3?33?f3??3??3??ff3fff?f?f?f3f33f3ff3?f3?f3?ffff3fffff?ff?ff?f?f?3f?ff??f??f??f?f?3f?ff?f??f??f?f?3f?ff??f??f????3?f??????3?33?3f?3??3?3??f?f3?ff?f??f?f?????3??f????????????3??f???????????3??f??????????3?f???????3?33?3f?3??3??3??f?f3?ff?f??f??f???3?f??????????3??f????????????3??f???????????3?f???????3?33?3f?3??3??3??f?f3?ff?f??f??f?????3??f?????????????3??f????????????3??f?????????!?,,2??
H????*\??Ç#J?H???3j???I C?I???(S?\???0c?I???8s?????@?
J???H?*]???P?J?J???X?j????`ÊK???h?]???p??K???x???????L???È+^???i#K?L????3k?????C?M????S?^?Zo@;
Can somebody explain what I have to do to get my yellow recatngle in the
browser ?
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Text;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Bitmap image = new Bitmap(300, 50);
Graphics g = Graphics.FromImage(image);
g.FillRectangle(Brushes.Yellow, 0, 0, 300, 50);
image.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Gif);
}
}
//Tony