Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to remove a border from an image if the image does not exist

Status
Not open for further replies.

Halliarse

IS-IT--Management
Jan 8, 2007
213
GB
Hi

I have an ASP page that has an image on it with no URL set....I do this in the code behind and it works perfectly, however, if a company logo does not exist, the ImageURL is not set, which results in a blank image (good) with a border displayed (bad).

MY ASP for the image is as follows:

<asp:Image ID="Image1" runat="server" width="120px" height="120px" BorderStyle="None" BorderColor="White" BorderWidth="0px" />

Is there anyway I can turn the border off if the ImageURL is not set?

Many thanks

Steve
 
when you set Image1.ImgUrl property in code behind add
if (Image1.ImgUrl=="")
Image1.visible=false;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top