HyperLink.ImageUrl Proprietà

Definizione

Ottiene o imposta il percorso di un'immagine da visualizzare per il controllo HyperLink.

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

Valore della proprietà

String

Percorso di un'immagine da visualizzare per il controllo HyperLink. Il valore predefinito è una stringa vuota ("").

Attributi

Esempio

Nell'esempio seguente viene illustrato come impostare la ImageUrl proprietà per specificare il percorso dell'immagine da visualizzare.

<%@ Page Language="C#" AutoEventWireup="True" %>
<!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>HyperLink Example</title>
</head>
<body>
<form id="Form1" runat="server">

   <h3>HyperLink Example</h3>

   Click on the HyperLink:<br />  

   <asp:HyperLink id="hyperlink1" 
                  ImageUrl="images/pict.jpg"
                  NavigateUrl="http://www.microsoft.com"
                  Text="Microsoft Official Site"
                  Target="_new"
                  runat="server"/>       
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!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>HyperLink Example</title>
</head>
<body>
<form id="Form1" runat="server">


   <h3>HyperLink Example</h3>

   Click on the HyperLink:<br />  

   <asp:HyperLink id="hyperlink1" 
                  ImageUrl="images/pict.jpg"
                  NavigateUrl="http://www.microsoft.com"
                  Text="Microsoft Official Site"
                  Target="_new"
                  runat="server"/>       
</form>
</body>
</html>

Commenti

Il HyperLink controllo può essere visualizzato come testo o immagine. Utilizzare la ImageUrl proprietà per specificare un'immagine da visualizzare per il HyperLink controllo .

Nota

Se vengono impostate entrambe le Text proprietà e ImageUrl , la proprietà ha la ImageUrl precedenza. Se l'immagine non è disponibile, viene visualizzato il testo nella Text proprietà . Nei browser che supportano la funzionalità ToolTip, la Text proprietà diventa anche la descrizione comando.

Si applica a

Vedi anche