Link to home
Start Free TrialLog in
Avatar of groovymonkey
groovymonkeyFlag for Canada

asked on

Using ASP to create "screensaver" like page that flips through "records"--complicated formatted pages and images

Here is what I am trying to do...
I have been asked to create a web page "screensaver" like that users (about 100) can link to and make their default home page.  This page will be used to display information about missing children.  The layout for each displayed "record" will involve complicated layouts using css and images.  I am looking for the most resource appropriate solution.  Perhaps there is a way to include all of this info on one page?  I want to make sure that all users have no problem viewing the info.  I only have access available for a databas so I thought perhaps that this is not the best method to do it because of possible simultaneous requests "breaking" the page.  I have allocated a large amount of points for for this question because I will need a walk through on this one.

It is urgent and important! Thanks Groovymonkey
Avatar of groovymonkey
groovymonkey
Flag of Canada image

ASKER

Another 500 points are available for this question at:

https://www.experts-exchange.com/questions/20943800/Using-javascript-to-create-screensaver-like-page-that-flips-through-records-complicated-formatted-pages-and-images.html

I have included the question under Javascript because I am uncertain of what technology should be used to resolve this problem.
thanks
Well you would need to set the Window to Maximized and you could do whatever you wanted. Then check for KeyPress and MouseMove and if key pressed or mouse moved you could close the window. (this would need to be either JScript or VBScript).


-Brian
Avatar of Zvonko
Screensaver is a good idea, but it would require to much elements to load and then to do timedriven control.
My first idea would be to make a slide show.
That say: you create every page with their apropriate design and do only link from page to page to load the next page after some timeout time.
The last page could call again the first page to start again the loop.

If you like the slide show idea, then I can tell you two methods of setting the timeout for next page. Eiter by <meta> tag, or bay JavaScript setTimeout command.
Zvonko,
Would I not run the risk, of there are 100 users, of having request errors?
Why request errors? You can have thousands of users reading your twenty static pages asynchronous each one geting his page requested. That's web server job.
ASKER CERTIFIED SOLUTION
Avatar of Zvonko
Zvonko
Flag of North Macedonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
And the switch time to next slide will be 20 seconds in upper example. You can adjust that time on every page individualy.

Avatar of mouatts
mouatts

There is no reason why you can't have the pages generated by asp from your access database, multiple concurrent requests are not a real issue. The you can use Zvonkos idea but only need to create one asp page with a counter within the URL eg

<META HTTP-EQUIV="REFRESH" Content="20;URL=Page.asp?counter=1">

Within the asp you can use the following

counter=request("counter")+1
if counter>20 then
    counter=1
end if

Now user counter within your sql to grab the appropriate records from the database and to format the META line as you send it out again.

Steve

Zvonko,
How would I open the browser page in full screen view with the menu hidded.  I like you refresh idea and will go with it if I can adjust the browser.

thanks
groovymonkey