I use location.hash javascript mathod a lot at my ajax requests. Generally I replace standard {action}/{id} with {action}#{id}
How can I introduce this strategy at rounting system? I wol like write:
@Html.ActionLink(text, action, controller, new { id }, new { })
and this generates /controller/action#id ?
Oh may be it's not good idea? How do you process ajax requests(open some entity at list?)
Thanks