summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Web/Redirect.cs
blob: de4a5fe4eb5f38f5660e03dc7f047a877ec1a1e5 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Web;
using Marina.Web.Views;

namespace Marina.Web {
	public class Redirect {
		public static void To( IView page ) {
			HttpContext.Current.Server.Transfer( page.Name( ) );
		}
	}
}