ASP.net と MVC3 を使用しています。セッションの有効期限が切れたら、ポップアップを表示するか、ログイン ページに移動する必要があります。アクション名が「index」、コントローラー名が「Home」のログインページにリダイレクトする方法を教えてください。
私のコードは次のとおりです。
このメソッドは私のモデルにあります。このモデルでは、ログイン ページにリダイレクトする必要があります。
protected Product GetCurrentCorp(HttpContextBase context)
{
if (context.Session != null)
{
var selectedProduct = context.Session["SelectedProduct"];
if (selectedProduct != null)
{
var product= selectedProduct as Product;
return product;
}
}
// Here I need to redirect to index page(login page)
throw new ArgumentException("Product is not set, Cannot Continue.");
}