Image Hyperlink Targets

  • Thread starter Thread starter Ross Culver
  • Start date Start date
R

Ross Culver

Why is that none of the image components have a target property?

I want to use an image instead of text to open a page in the search pane,
but I can't access the target property of the button, linkbutton or
imagebutton.

Thanks.

Ross
 
Why is that none of the image components have a target property?

I want to use an image instead of text to open a page in the search pane,
but I can't access the target property of the button, linkbutton or
imagebutton.

Thanks.

Ross

<asp:HyperLink id="hyperlink1"
ImageUrl="images/pict.jpg"
NavigateUrl="http://www.microsoft.com"
Text="Microsoft Official Site"
Target="_blank"
runat="server"/>
 
Back
Top