i want to redirect from view1 to view2, but it is not working and i cannot figure out why. it stays on the same view (path is still: "Home/view1" and i want it to be "Home/view2)". please help.
in my 1. view:
Html.Action("View2", "Home", new { id = siteid });
in my home-controller:
public ActionResult View2(int id)
{
var model = new View2ID();
model.site1ID = id;
return View(model);
}