Hi
I use image control in mypage that I bind it from database and I define that if there isn't any image in database it do Image1.visible=false
In crome and firefox it worked correctly but in IE show like below
what should i do?
Best Regards
Neda
replace your visible property of image control to this
Visible='<%#(String.IsNullOrEmpty(Eval("Address").ToString()) ? false : true)%>'
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.