Thanks for looking!
Background
I am developing a web app on the .NET 4.5 framework (C#) that needs to allow users to create an account and then have a subdomain with their account name (e.g. "foobar.myDomain.com").
I realize that this needs to involve wildcard subdomains in IIS--no problems there. And I followed this SO post for setting up a custom route to intercept the URL requests and parse out the subdomain. That seems like it will work great.
Question
How the heck do I test wildcard subdomains in localhost
?? When I hit something like "foo.localhost" I just get a 404.
Any help would be appreciated!