tags:

views:

36

answers:

1

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!

+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