User1520731567 posted
Hi shilpa.gururao,
In MVC,you would like to navigate to another URL,without changing URL(it means not changing controller and action).
I'm not sure if i get your point.
Why not use return Redirect();
For example:
public ActionResult Index()
{
return Redirect("https://www.google.com/");
}
Best Regards.
Yuki Tao