I am using a repeater to show an image but if there is no image in database i want a default image there so how can i do this? please help
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhavesh JadavPosted Mar 29, 2018, 3:34 AM
step-1 : put one image at specific location
example : SELECT ISNULL(IMAGE,'~/MyProject/defaultimage.jpg') AS IMAGE from Table
try it, it will work
Thanks.