HttpResponse.SuppressContent Property
.NET Framework 3.0
Gets or sets a value indicating whether to send HTTP content to the client.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example checks whether the IsSecureConnection property is set to false. If it is, the SuppressContent property is set to true to stop the response from being sent.
// Clear headers to ensure none // are sent to the requesting browser // and set the content type. Response.ClearHeaders(); Response.ContentType = "image/jpeg"; int height = 150; int width = 250; // Create a Font and a PointF object to // be used to draw text. Font fntText = new Font("Arial", 8, FontStyle.Bold); PointF pntText = new PointF(5, 10); // Create a Bitmap object, then use it to // create a Graphics object. Bitmap bmp = new Bitmap( width, height, PixelFormat.Format24bppRgb); Graphics g = Graphics.FromImage(bmp); // Specify that the image will be smoothed, // then draw the rectangle and a String // inside the rectangle. g.SmoothingMode = SmoothingMode.AntiAlias; g.DrawRectangle(Pens.Blue, 0, 0, width, height); g.DrawString("Response.ClearHeaders Test", fntText, SystemBrushes.WindowText, pntText); g.FillRectangle(new SolidBrush(Color.Aqua), 0, 0, 250, 150); // Save the Bitmap to the OutputStream property. bmp.Save(Response.OutputStream, ImageFormat.Jpeg); // Release the Graphics and Bitmap object // and terminate the response. g.Dispose(); bmp.Dispose(); Response.End();
Community Additions
ADD
Show: