aquí es parte de mi códigoañadir una página web Fragmento de un MVC ActionLink
este
<%= Html.ActionLink(Model[x].Title, "Index", "q", new { slug = Model[x].TitleSlug, id = Model[x].PostID }, null)%>
produce esta url
http://localhost:61158/q/is_there_another_indiana_jones_movie_in_the_works/4
pero yo quiero producir una URL con un fragmento, como este:
http://localhost:61158/q/is_there_another_indiana_jones_movie_in_the_works/4#1
¿Hay alguna manera? hacer esto usando la función HTML.ActionLink?
Si alguien sabe una mejor manera de explicar esto no dude en edita esta pregunta – Luke101