Image Constructor

Definition

Initializes a new instance of the Image class.

C#
public Image();

Examples

The following example demonstrates how to create and initialize a new instance of the Image class.

Note

The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model.

ASP.NET (C#)
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Image Example</title>
<script language="C#" runat="server">

      void Page_Load(Object sender, EventArgs e)
      {
         Image myImage = new Image();
         myImage.AlternateText = "Image Text";
         myImage.ImageUrl = "image1.jpg";
         myImage.ImageAlign = ImageAlign.Left;
         Page.Controls.Add(myImage);

      }

   </script>

</head>
 
<body>

   <form id="form1" runat="server">

      <h3>Image Example</h3>
  
   </form>

</body>
</html>

Remarks

Use this constructor to create and initialize a new instance of the Image class.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1