私の Web アプリケーションでは、 glabal.asax からの URL を検証しています。URL を検証し、必要に応じてアクションにリダイレクトする必要があります。リクエストイベントをキャッチするために Application_BeginRequest を使用しています。
protected void Application_BeginRequest(object sender, EventArgs e)
{
// If the product is not registered then
// redirect the user to product registraion page.
if (Application[ApplicationVarInfo.ProductNotRegistered] != null)
{
//HOW TO REDIRECT TO ACTION (action=register,controller=product)
}
}
または、mvc でリクエストを取得しながら各 URL を検証し、必要に応じてアクションにリダイレクトする他の方法はありますか