Image.ImageUrl プロパティ

定義

Image コントロールに表示するイメージのパスを示す URL を取得または設定します。

public:
 virtual property System::String ^ ImageUrl { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public virtual string ImageUrl { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ImageUrl : string with get, set
Public Overridable Property ImageUrl As String

プロパティ値

String

Image コントロールに表示するイメージのパスを示す URL。

属性

次の例では、プロパティを使用 ImageUrl して、コントロールに表示するイメージの場所を指定する方法を Image 示します。

<%@ 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>
</head>
 
<body>

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

      <h3>Image Example</h3>

      <asp:Image id="Image1" runat="server"
           AlternateText="Image text"
           ImageAlign="left"
           ImageUrl="images/image1.jpg"/>
  
   </form>

</body>
</html>
<%@ Page Language="VB" %>
<!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>
</head>
 
<body>

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

      <h3>Image Example</h3>

      <asp:Image id="Image1" runat="server"
           AlternateText="Image text"
           ImageAlign="left"
           ImageUrl="images/image1.jpg"/>
  
   </form>

</body>
</html>

注釈

このプロパティを ImageUrl 使用して、コントロールに表示 Image するイメージの URL を指定します。 相対 URL または絶対 URL を使用できます。 相対 URL は、サーバー上の完全なパスを指定せずに、イメージの場所を Web ページの場所に関連付けます。 パスは、Web ページの場所を基準にしています。 これにより、コードを更新せずに、サイト全体をサーバー上の別のディレクトリに簡単に移動できます。 絶対 URL は完全なパスを提供するため、サイトを別のディレクトリに移動するには、コードを更新する必要があります。

適用対象