how can I pass an id through actionlink without this being shown through the url?
@Html.ActionLink("Edit", "Edit", new { id = item.Id}) |
The URL appears to me the next picture form:
http://localhost:49723/UsersAdmin/Edit?id=c070d5f8-57ce-4714-a3e7-2b293b1a3e12
was supposed to pass the parameter id to the edit page without which this was shown in the url.
Thanks in advance!