david7777
01-28-2005, 07:48 AM
I am currently developing an image gallery site similar to www.thunda.com
My site is template driven, so if i change my template file, the site look and feel will change.
Looking at thunda.com, after choosing a province, then clicking on "pics", then selecting any event, a list of thumbnails appear - this page is an HTML page. I assume that when they uploaded their images, the page was dynamically created.
These images could be displayed this way, or using an aspx page which fetches image information from the database every time the page is viewed.
Currently i am using the latter option, but it seems a bit slow - i would imagine that the static html page would load faster because of no server side interaction.
Performance is a major concern with this site - what are my best options? Should i dynamically create an html file for each set of images i upload, or should i try and optomise my aspx page and display the images directly from the database?
Please let me know if i am being unclear about anything...
My site is template driven, so if i change my template file, the site look and feel will change.
Looking at thunda.com, after choosing a province, then clicking on "pics", then selecting any event, a list of thumbnails appear - this page is an HTML page. I assume that when they uploaded their images, the page was dynamically created.
These images could be displayed this way, or using an aspx page which fetches image information from the database every time the page is viewed.
Currently i am using the latter option, but it seems a bit slow - i would imagine that the static html page would load faster because of no server side interaction.
Performance is a major concern with this site - what are my best options? Should i dynamically create an html file for each set of images i upload, or should i try and optomise my aspx page and display the images directly from the database?
Please let me know if i am being unclear about anything...