I am using IIS 6. I think my problem is that I don\'t know how to route to a non controller using the routes.MapRoute.
I have a url such as example.com and I want i
Configure the asp.net routing to ignore root ("/") requests and let IIS's "Default Document" ISAPI filter serve the static index.htm file
root ("/") requests
IIS's "Default Document"
index.htm
Add the following to the RegisterRoutes method.
RegisterRoutes
routes.IgnoreRoute("");