次の方法で共有


Image.ImageUrl プロパティ

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

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
<BindableAttribute(True)> _
Public Overridable Property ImageUrl As String
'使用
Dim instance As Image
Dim value As String

value = instance.ImageUrl

instance.ImageUrl = value
[BindableAttribute(true)] 
public virtual string ImageUrl { get; set; }
[BindableAttribute(true)] 
public:
virtual property String^ ImageUrl {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_ImageUrl ()

/** @property */
public void set_ImageUrl (String value)
public function get ImageUrl () : String

public function set ImageUrl (value : String)
適用できません。

プロパティ値

Image コントロールに表示するイメージの位置。

解説

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

トピック 場所
方法 : Web フォーム ページに Image Web サーバー コントロールを追加する (Visual Studio) Visual Studio での ASP .NET Web アプリケーションの作成
方法 : Web フォーム ページに ImageButton サーバー コントロールを追加する (Visual Studio) Visual Studio での ASP .NET Web アプリケーションの作成
方法 : Web ページに ImageMap Web サーバー コントロールを追加する (Visual Studio) Visual Studio での ASP .NET Web アプリケーションの作成
方法 : Web ページに ImageMap Web サーバー コントロールを追加する Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web フォーム ページに Image Web サーバー コントロールを追加する (Visual Studio) Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web ページに ImageMap Web サーバー コントロールを追加する Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web フォーム ページに ImageButton サーバー コントロールを追加する (Visual Studio) Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web フォーム ページに Image Web サーバー コントロールを追加する (Visual Studio) Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web フォーム ページに ImageButton サーバー コントロールを追加する (Visual Studio) Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Web フォーム ページに Image Web サーバー コントロールを追加する ASP .NET Web アプリケーションの作成
方法 : Web フォーム ページに ImageButton Web サーバー コントロールを追加する ASP .NET Web アプリケーションの作成
方法 : Web フォーム ページに ImageMap Web サーバー コントロールを追加する ASP .NET Web アプリケーションの作成

使用例

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

<%@ 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>
<%@ 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="JSCRIPT" %>
<!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>

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

Image クラス
Image メンバ
System.Web.UI.WebControls 名前空間

その他の技術情報

Image Web サーバー コントロール