I am trying to output the following URL using the ASP.Net MVC3 framework and I am a total noob at this stuff:
http://www.foo.com/controller/action/1
Here is my code so far:
@Html.ActionLink("Click here!", "action", new { Controller = "controller" })
This gives me:
http://www.foo.com/controller/action/
What do I need to get a simple hardcoded 1 in there at the end?