Hi All,
My task is to dispaly the images in dataset.
Images and their text name are stored in database.
i need to dispaly the textname and image names.
Ex:-
Dataset:-
Folwer Nature Baby //Image Text Name
flow.jpg Na.jpg Baby.jpg //Images.
Can any one send me the sample code for this.
Thanks in Advance
Loading
suchi ranaPosted Dec 21, 2011, 1:01 AM
Vikrant JadhavPosted Dec 20, 2011, 2:45 AM
This Sample Code will help You.
Thanks & Regards
Vikrant Jadhav
Please Mark as a Correct Answer if This post is helpful to you.
Pravin GhadgePosted Dec 20, 2011, 2:15 AM
You just have to use simple select query.
For Eg:
Sqldataadapter adp=new sqldataadapter("Select Image,Imagename from tblname",con);
Dataset ds=new Dataset();
adp.fill(ds);