@{
ViewBag.Title = "About Us";
}
@using (Html.BeginForm(new RouteValueDictionary { {"Action","Index"}}))
{
<input type="submit" value="submit"/>
}
When I render
<form action="/Home/Index" method="post"><input type="submit" value="submit"/>
Is this the actual use of RouteValueDictonary. If so I can do this do by HTML.BeginForm("About","Home")
Can some one explain the actual use of RouteValueDictonary. Any help will be appreciated.