Code: Select all
//Controller code
public ActionResult Index( )
{
--Do some logic
if(logicpasses)
{
return Redirect("http://google.com"); -- This doesn't work out as it's navigating to the URL in the same tab
return JavaScript("Window.open('http://google.com')"); -- This is not working as well
}
else
{
return Redirect("http://google.com");
}
}