Talk:Multiple Pages
From Hack Wars Wiki
there is rarely only one way to get things done
"To make multiple pages in HTTP you must use the function fetchGetVariable()."
Must is a little bit too restrictive. There are several approaches
- HTML divs + javascript:
+ no reload necessary (fast pageswitch)
+ requires no files on your hd
+ content changeable through site editor
+ no recompile necessary
- not possible to log visitor action (?)
- loads the FULL content the first time the website is visited (or reloaded)
- big sites might hit file limits
- your approach
+ content changeable in file and site editor
+ visitor action logable
+ requires only one file on your hd
- page changing requires reload
- hard to display text/sites longer than one line
- new pages require recompile of http script
- your approach but instead reading from one line using site=readFile("Website1"); etc.
+ content changeable in file and site editor
+ visitor action logable
+ easy to add new pages to the code
- page changing requires reload
- new pages require recompile of http script
- every page requires one space on your hd
I cannot go into details. I did not create a website using multiple pages yet. I know the first one does not use HTTP. But the title of this article does not include that it is about HTTP only Silverlight 13:36, 8 March 2009 (UTC)
