Hi Rico,
It depends on whether to have axxess to the configuration of your web
site.
The way IIS works, and, I imagine, other server systems too, is that the
extension of the file determines which processor (dll or exe) handles the
file. On my system, for instance, *.aspx is directed to aspnet_isapi.dll. You
would need to set the mapping for *.html to the same dll.
The downside of this is that <every> html file would be processed as an
aspx file. This would work ok but it would impose the overhead of the aspx
processor having to figure out that it's not always dealing with aspx code.
If you have the IIS documentation the topic is "Setting Application
Mappings". You can get it via the index using "extension" as the keyword.
Regards,
Fergus