hello again
i can give u the full project code using asp.net with c# .
what database u like:
sql2000 or access2000 ?
Main Topics
Browse All TopicsI give double points to the accepted solution!!
Can anyone help me out with creating a vertical slideshow with images from a database which would need to have to following specs:
- database driven (ASP if possible or combination with other script)
- vertically show 3 images, top and bottom faded slightly and the middle one highlighted some way
- the middle one also should be clickable to link to a detail page (ASP)
- next to the middle image I'd like to see a brief description of the image (text from database as well)
This may be a commercial solution as well (if not too expensive)
I give double points to the accepted solution!!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
woow, very fast response.
i'll post the code here to make every body get use of it.
database:
=======
create an access database file. name it Images.mdb
creat a table called Image and fill in these data.
ImgID ImgLoc ImgDesc
1 1.jpg one
2 2.jpg two
3 3.jpg three
4 4.jpg four
5 5.jpg five
6 6.jpg six
7 7.jpg seven
8 8.jpg eight
9 9.jpg nine
10 10.jpg ten
the asp file should look like:
<%@ Language=VBScript %>
<html>
<head>
<meta name="GENERATOR" Content="Microsoft Visual Studio.NET 7.0">
</head>
<body>
<%
Response.Write("&")
set conn=Server.CreateObject("
conn.Open "DRIVER={SQL Server};SERVER=CDW2P-HIT80
If conn.errors.count = 0 Then
'Response.Write "Connected OK"
End If
set rs = Server.CreateObject("ADODB
rs.Open "SELECT UserName,value1,value2 FROM Users;", conn
counter=1
do until rs.EOF
for each x in rs.Fields
Response.Write(x.name)&cou
Response.Write("=")
Response.Write(x.value)
Response.Write("&")
next
counter=counter+1
rs.MoveNext
loop
rs.close
conn.close
if Request.Form("test") <>"" then
Response.Write "test2="&Request.Form("tes
end if
Response.Write "&"
%>
</body>
</html>
and the flash should look like:
myData = new LoadVars();
myData.source = "http://localhost/500Point
myData.onLoad = function() {
ImageCounter = this.ImgCount;
ImageLocs = new Array();
ImageDesc = new Array();
for (k=1; k<=this.ImgCount; k++) {
ImageLocs[k] = this["ImgLoc"+k];
ImageDesc[k] = this["ImgDesc"+k];
}
};
myData.load(myData.source)
Business Accounts
Answer for Membership
by: kanaryPosted on 2003-07-26 at 07:15:45ID: 9010841
hello pmelkebeke,
if u gace me some more time, i can help u with this question.