0

その関数から文字列値を返す関数が 1 つあります。ここに私のいくつかのコードを示しました

<code>
public string MainPane()
{
 if (Request.Cookies["Cookie"] != null)
 {
  try
  {
    //DO Something code here
  }
  catch (Exception ex)
  {

  }
  return("");
}
else
{
  //I need to redirect from here when cookie value is null
}
</code>

ありがとう、

ニラフ・パリク


これは私のasp.net MVCアプリケーションなので、

Response.Redirect("Index"); 

この機能は利用できません。私は試していた

RedirectToAction("Action Name","Controller Name"); 

ただし、関数は文字列値を返し、RedirectToAction は文字列を返しません。

ありがとう、ニラフ

4

1 に答える 1

-1

使用できます:

Response.Redirect("Index");

ActionResult を返さなくてもリダイレクトされます。

于 2013-03-26T12:35:44.550 に答える