In ASP.NET, a tilde (~) is treated as a token in URLs and considers paths whose prefix matches the application root. This is a well-known functionality.
There are other tokens in MOSS, such as ~ sitecollection / mypath ... which behaves the same way, but treats the path as relative to the root of the site collection. How is this achieved? After a quick search, I could not find any information on how to add tokens like this to the .NET URL resolver.
Rex m source
share