[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

create thumbnails on upload or similar

Asked by forsters in Web Images, Adobe Dreamweaver, Programming for ASP.NET

Hi all, one for the weekend.

I'm trying to build a gallery of thumbnails from a database of full-size stock images.

I've used a ASP:datalist with a RepeatColumns property to get started but I now find I have two problems one I dont know how to paginate it and more importantly although I'm setting the image height to 100px to give me a thumbnail view behind the scenes my page is trying to find load and control the view of currently 500 odd full-size images before showing me the scaled down view of them. Not suprisingly I waited a very very long time before anything appeared on my screen.
How should I approach this?
Do I need to create actual thumbnails of all the images in the database, is there a better way?

Ideally I want people to be able to upload a new image to the database without having to make a thumbnail copy each time.

So i'm looking either for a way to automate it so that on upload a thumnail version is created, databased and saved too. Or a way of handling the actual images sizes into a temporary thumnail view without grinding to a halt.

Or quite frankly any suggestions - never done this before and not sure where to begin.

I'm using dreamweaver8 and code in ASP.net vb database is SQL, enough javascript knowledege to copy paste a bit of code in thats about it, some previus use of jquery but no idea how to integrate the galleries with the database side of things.

My sample code so far is attached.

 
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:DataList
id="dlstOriginals"
DataSourceID="srcImagesOriginals"
RepeatColumns="8"
Gridlines="Both"
Runat="server">
<ItemTemplate>
<img src="http://mysite/ImageSite/originals/<%#Eval("OriginalName")%>" height="100px"/>
</ItemTemplate>
</asp:DataList>
 
<asp:SqlDataSource
id="srcImagesOriginals"
ConnectionString="<%$ ConnectionStrings:DatabaseName %>"
SelectCommand="SELECT OriginalName
FROM ImagesOriginals"
Runat="server" />
</div>
</form>
 
    
 
</body>
</html>
[+][-]10/30/09 12:01 PM, ID: 25705892Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Web Images, Adobe Dreamweaver, Programming for ASP.NET
Sign Up Now!
Solution Provided By: nfashaw
Participating Experts: 1
Solution Grade: A
 
[+][-]11/02/09 04:31 AM, ID: 25718772Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/02/09 05:32 AM, ID: 25719073Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]11/02/09 06:17 AM, ID: 25719448Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_3_20080625