Forum Moderators: martinibuster
Dynamic is a very broad word and people seem to use it for anything with a little server side scripting on it (or for anything with a query string).
It is very difficult to tell from the front end if something is "dynamic" or not. If it has a query string and you guess that there is an aspect of dynamic content then you will probably be right more than wrong.
As an example, my pages are 100% dynamic database and template driven but they look and act static with .html extensions and no query strings.
so, you never can be sure.
If the extension is just .asp , .php etc. , it may be static or dynamic page.
However a static looking page ending in .htm / .asp / .php etc. can be dynamic if the server is running Mod_Rewrite (a script which makes dynamic pages look static to Search Engines)
go to the page in question in a browser and view source of the page.
if the code does not start on the first line then there is a very good chance that some server side script was run before serving the page.
of course there can be other reasons for this including just that the code for the page was written starting on line 2 and line 1 was left blank. likewise if the code starts on line 1 it could still have be "dynamically" created.
but as a quick indicator i'd say there was a strong chance that it is dynamic.