
Ever wanted to have your static pages get process as ASP or any
scripting language for that matter? With IIS it's easy and great
way to keep your file names the same when upgrading or migrating to a
new system/website backend. Some control panels will allow you to edit
this file association without all of these steps (looks for mime types
or something similar) but this example will show you how to do this if
you direct access to the server.
For those using Apache servers or anyone with access
to their .htaccess file its also very simple:
AddType application/x-httpd-asp .html
AddType application/x-httpd-asp .htm For
IIS users:



The executable is: C:\WINDOWS\system32\inetsrv\asp.dll
The Extension is whatever you want to process for this example we are
using .htm but it could be .html, .shtml or whatever.
 |