Hello.
I want to be able to pass link to view from controller. Is there anything like Html.ActionLink
on the server side?
Thank you for your help!
views:
36answers:
1
+1
A:
In your controller you can use Url.Action
to generate a new url using actions, controllers and routevalues.
This will not return a <a>
tag, but only the url, for you to use in your controller.
GvS
2010-09-29 08:28:24