0

我有一个从该函数返回字符串值的函数。下面显示了我的一些代码

<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 回答