Maybe silly question: I want Razor to generate link like this:
< a href="/AppName/ControllerName/ActionName/ID">
http://MyServer/AppName/ControllerName/ActionName/ID
</a>
Note full URL as link text. Can I do it with
@Html.ActionLink(###???###, "MyActionName", "MyControllerName",new { id = Model.id },null)
What should go into ###???### place? It doesn't take null or empty string. I can manipulate Request URL of cause but that seems to be too complicated.
Any other methods?
Thank you!!!