In my MVC app, why does
Return RedirectToAction("Edit", "Forms", New With {.member = "123"})
return
http://localhost:13/Forms/Edit?member=123
insted of
http://localhost:13/Forms/Edit/123
?
And why does
<%=Html.ActionLink("MyLink", "Edit", "Forms", New With {.member = "123"}, Nothing)%>
do the same thing?