I have a web site that serves only one page from the root. The page (call it stuff.htm) is generated by a custom handler, and doesn't physically live on disk.
I'd like stuff.htm to be the default doc for the site, but the standard configuration method of making it the default doc fails since the regular ASP.Net DirectoryListingModule is trying to do a Server.Execute of the file. (At least, that's what I can infer is happening.)
I know I can write code through a default.aspx that does what I need, but I want to avoid writing code for this. Any known configuration tricks to supersede the default handler behavior without having to override the default handling behavior?