I have been trying this with no luck
Background Information:
Dreamweaver MS and Access Query
I wrote a query that displays a random record using the following SQL
Then I created an image in dynamic form in Dreamweaver. The link goes to the query and the proper field in MS Access.
When testing the query in the Dreamweaver window using the TEST button the result is random just as it should.
Then I put it all together and uploaded the page only to find that it loads the same image each time IE.
Any thoughts? I know that Random isn't always random, but if it worked just part way it would be fine for the purpose that I have.
When I get it to work I would like to extend it to six images. Essential choosing six links from the table in Access and linking them to the dynamic image feature in MX
Thanks! My 15 year old is pestering me about finishing his project.
Keith
Background Information:
Dreamweaver MS and Access Query
I wrote a query that displays a random record using the following SQL
Code:
SELECT TOP 1 Rnd(tblOutsideLinks.LinkNo) AS RandomNo, tblOutsideLinks.LinkName, tblOutsideLinks.AdroitServerLocation, tblOutsideLinks.WebsiteLink, tblOutsideLinks.ContactName, tblOutsideLinks.ContactEmail
FROM tblOutsideLinks
ORDER BY Rnd(tblOutsideLinks.LinkNo);
Then I created an image in dynamic form in Dreamweaver. The link goes to the query and the proper field in MS Access.
When testing the query in the Dreamweaver window using the TEST button the result is random just as it should.
Then I put it all together and uploaded the page only to find that it loads the same image each time IE.
Any thoughts? I know that Random isn't always random, but if it worked just part way it would be fine for the purpose that I have.
When I get it to work I would like to extend it to six images. Essential choosing six links from the table in Access and linking them to the dynamic image feature in MX
Thanks! My 15 year old is pestering me about finishing his project.
Keith