I have an anchor in one of my views:
<a name="@("Doc" + Model.Key)"></a>
I want to link to this anchor from another view:
<a href="@(Url.Action("Update") + "#Doc" + Model.DocumentId)">Go To Document Properties</a>
This generates a url like so: http://localhost:60010/Session/Update#Doc1
When I click this link, I get the following error:
The parameters dictionary contains a null entry for parameter 'id' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult Update(Int32)' in 'Controllers.SessionController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter. Parameter name: parameters
I'm using the default route, no custom routes:
routes.MapRoute("Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
How can I get MVC to ignore the html anchor in the url (#Doc1, for example)?