Can somebody tell me what is wrong with this ActionLink?
@Html.ActionLink(posts.Title, "PostDetails", "Blogs", new { id = posts.PostID } )
I am expecting this link to go to:
But instead I see the following in Firefox:
It’s not even going to Blogs controller.
Are you sure you are calling the right overloaded method.
If you miss one param it gives a different meaning.
HTML.ActionLink method
http://msdn.microsoft.com/en-us/library/dd505040.aspx
Please double check if you are missing a param.