How to call multiple images in asp.net using sql server
I have two tables like Product table and
Product_Images table
Product table:-
PID int pk,
PName varchar(50),
PPrice money
and Product_Image table:-
PIM_ID int pk,
PIM_image1 varchar(max),
PIM_image2 varchar(max),
PID fk(from Product Table)
I want to call these productimages for each product view page....
Please suggest me some sites for implement this task...
Thanks in Advance