I have this link on the page
<% = Html.ActionLink(item.Title, "Edit", "ArticleManagement", new { id = item.ArticleDataID })%>
and easy way to get article id
public ActionResult Edit(int id) {
Sorry, I am getting an error. The parameter dictionary contains a null value for the int32 parameter identifier for Edit (Int32) ... "
When I check Url, I see something like http: // localhost: 59786 / ArticleManagement / Edit? Length = 17 "
What is Length = 17 "? And what to do there? Anyway, while I work with a collection on which there are only 3 elements.
thanks for the help
source share