Hello,
I've this link on a page
<% = Html.ActionLink(item.Title, "Edit", "ArticleManagement",
new { id = item.ArticleDataID })%>
and a simple method to receive the article Id
public ActionResult Edit(int id)
{
//Do something
}
Unfortunately, I'm getting an error" parameter dictionary contains a null value for parameter id of int32 for Edit(Int32)..."
When I check the Url, I see something like "http://localhost:59786/ArticleManagement/Edit?Length=17"
What is "Length=17"? and what's doing there? Anyway, so far I'm working with a collection that has only 3 items on it.
Thanks for helping