I would like to provide localization for my website in Azure.
I went with a classic aspx website since localization is supported by classic asp out-of-the-box and I have only a few pages. I want to keep it simple so MVC might be overkill.
I plan to register only 1 Azure web role for the site (foo.com) but would like virtual paths for localization, eg. foo.com/de-de, etc.
Azure does not allow virtual folders like IIS, so I think I can use Request.Path and do some jugglery to detect the virtual (localized) path.
Can you think of any other clean method? Maybe some web.config tags?
Thanks
Maybe you can do something with ASP.NET routing?