HI FRIENDS,
i want to display as Menu page which contains tile and any one Image under that title if I Select that title or that picture iterator should redirect me Gallery.ASPX which contains all Theme images of that particular title.
all my title name and images are stored in database.
tblimagegallery
id(primry key)
imageid(foriegn key)
smallpicture(varchar(250))
largepicture(varchar(250))
I have a page
upload.aspx
tblimagedetail
imageid(primarykey)
Title(nvarchar)
in this page I am uploading multile pictures under 1 Title all.. so all the images has the same imageid.
now I wan to display all those images that i Can simply retrive from database but before that page I want a Menu page to filter my images.
Title1,title2,title3 for exampl
MOBILE,LAPTOP,PENDRIVE
displaying my titles with one image for each..
and that image shoul be any one of the coresponding uploads
i selected many images in mobile in a sindle click any one from that.
Member
13 Points
126 Posts
Gallery Menu using asp.net and sqlserver
Dec 22, 2013 11:12 PM|Sowmia|LINK
HI FRIENDS,
i want to display as Menu page which contains tile and any one Image under that title if I Select that title or that picture iterator should redirect me Gallery.ASPX which contains all Theme images of that particular title.
all my title name and images are stored in database.
tblimagegallery
id(primry key)
imageid(foriegn key)
smallpicture(varchar(250))
largepicture(varchar(250))
I have a page
upload.aspx
tblimagedetail
imageid(primarykey)
Title(nvarchar)
in this page I am uploading multile pictures under 1 Title all.. so all the images has the same imageid.
now I wan to display all those images that i Can simply retrive from database but before that page I want a Menu page to filter my images.
Title1,title2,title3 for exampl
MOBILE,LAPTOP,PENDRIVE
displaying my titles with one image for each..
and that image shoul be any one of the coresponding uploads
i selected many images in mobile in a sindle click any one from that.
thanks in advance
Star
12777 Points
1635 Posts
Re: Gallery Menu using asp.net and sqlserver
Dec 23, 2013 09:47 PM|Terry Guo - MSFT|LINK
Hi Sowmia,
According to your description, my understanding is that you would like to change the site's theme when user click button.
If so, I suggest you using the theme of asp.net to solve it:
About how to create a them in asp.net please refer:
How to: Define ASP.NET Page Themes
And then you can using the following code to specify the page's style:
More information about theme of asp.net please refer to:
http://msdn.microsoft.com/en-us/library/ykzx33wh(v=vs.100).aspx
Hope it helps.
Best Regards,
Terry Guo
Member
13 Points
126 Posts
Re: Gallery Menu using asp.net and sqlserver
Dec 25, 2013 11:50 PM|Sowmia|LINK
ok I will simplfy my question
I have a table named images in that I have image title.
another table named pictures that contains my image path
now i want to display all the image titles with images like a datalist view.
per title I have stored 3-4 images using multiple upload
now I want any ony image from under that title to be displayed for example my titles,
mobile,pendrive,laptop
under mobile I have uploaded nokia,samsung,lg
now i want to display nokia image for my title.
how to display that .
THANKS IN ADVANCE