I'm not getting how to display the images in the gridview because my folder name and image name are stored seperately in the database plz suggest the way............
and
can anyone suggest me how to concatenate the FolderName and SmallImage to display the image in the gridview
ArshadPosted Jul 14, 2008, 1:20 AM
Select FolderName+'\'+ImageName As Path form Table
and give like DataBinder.Eval(Container.DataItem, "Path ")
If that Image is inside the Folder than
src=../<%#DataBinder.Eval(Container.DataItem, "Path ")%>
If there are more than Two folder then
src=../../<%#DataBinder.Eval(Container.DataItem, "Path ")%>
Just check the Path where is that Image and assign like that,thats all. Thanks