图片输出到网页,指定位置
请问,我画了一张图,然后用流的方式输出到页面,要如何指定位置,比如放进页面的一个表格中
System.IO.MemoryStream ms = new System.IO.MemoryStream(); bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png); this.Response.ContentType = "image/png"; ms.WriteTo(this.Response.OutputStream); ms.Close();