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 将图像的位置与网页的位置相关联,而无需在服务器上指定完整路径。 路径相对于网页的位置。 这样,无需更新代码,即可更轻松地将整个站点移动到服务器上的另一个目录。 绝对 URL 提供完整路径,因此将站点移动到另一个目录需要更新代码。

适用于