How does IIS7 know whether the file being served being static of dynamic content?
views:
33answers:
1
A:
IIS checks to see if there's a handler mapping for the file extension. If there isn't, the file path is passed to the modules defined in the StaticFile
handler mapping which will use the StaticFileModule
to determine if there's a matching mime type.
Kev
2009-10-21 01:49:01