Whats the difference with all these page types?

S

salsweb

What is the difference between .htm .html .asp and anything else at the end
of the URL?
 
M

Mark Fitzpatrick

They can represent a different type of server technology being used.

..htm and .html both mean standard html pages.
..php is a PHP script page
..cfm is a ColdFusion page
..asp is an Active Server Page
..aspx is an ASP.Net page
..jsp is a Java Server Page
..shtm and .shtml are pages that make use of server side includes.
..pl is a perl script
..cgi is an executable form processor that makes use of the common gateway
interface

The list could continue on still, but mostly they give an indication as to
the technology used, and let installed server-side applications perform
processing on them in order to return some sort of dynamic content.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - Expression
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top