Click here to Skip to main content
15,881,380 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
How to make visible false URL which comes at the top of the page on left side,
Posted
Comments
MohamedEliyas 7-Aug-15 3:57am    
update source code in your project

1 solution

XML
<asp:Image runat="server"
        ID="titleimage"
        ImageUrl='<%#Eval("picturefilename","http://bytes.com/images/{0}") %>'
        alt='<%# Eval("para1title") %>'
        Width="200"
        Height="140"
        Visible="<%#If(DataBinder.Eval(Container.DataItem,"picturefilename")!="", True, False)  %>" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900