how to rewrite url string. in asp.net with c#.net.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
ASP.NET supports URL rewriting via System.Web.Routing, it is not just for ASP.NET MVC.
See How to: Use Routing with Web Forms on MSDN.
To have URL ~/foo handled by page ~/example/foo.aspx register the route in global.asax.cs
And the route handler might look like this: