I'm looking to make a simple web page (mainly used on the local machine) that would just be a single file (such as htm or html) but would dynamically change based on the url.
For example, if I went to 'file:///C:/Sandbox/test.htm' it might display the following...
Hello World
But if I went to 'file:///C:/Sandbox/test.htm?page=2' it might display the following...
You are visiting my second page!
I know I can do this type of thing with PHP or ASP but is it possible to do it with HTML or javascript or anything "native" to the browser yet?
Thanks in advance for the help!