vote up 1 vote down star

Hi,

In my view page, I want to link to the action "Display" and pass it the ID that the action expects as a parameter.

Which html helper do I use? I don't want it to create the a href page of the string, just the url.

flag

43% accept rate

1 Answer

vote up 3 vote down

<%= Url.Action("Display", "controller", new {ID = someIdValue}); %>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.