i want a facility that if user login then goes to home/index
i not want to use
return view('~/views/home/index');
i want to redirect it to a actionresult index of home controller of my web-application(in asp.net mvc)
how i can do this without return view(); i want to redirect him.
public actionresult login
if(userlogin)
{
// goes to index page ? what i do here then user goes to index page of home controller
}
else
{
return view()
}