if a controller action redirects to external url, what do you return in the function?
Posted
by oo
on Stack Overflow
See other posts from Stack Overflow
or by oo
Published on 2010-04-22T23:07:45Z
Indexed on
2010/04/22
23:13 UTC
Read the original article
Hit count: 154
asp.net-mvc
|links
i have a function and i am unclear what i should return from this?
public ActionResult LoadExternalURL()
{
Response.Redirect("http://www.google.com");
// what do i return here ??
}
© Stack Overflow or respective owner