vote up 7 vote down star
1

Let's say I have a class

public class ItemController:Controller
{
        public ActionResult Login(int id)
        {
            return View("Hi", id);
        }
}

On a page that is not located at the Item folder, where ItemController resides, I want to create a link to the Login method. So which HTML.ActionLink method I should use and what parameters to pass in?

Specifically, I am looking for the replacement of the method

Html.ActionLink(article.Title, new { controller = "Articles", action = "Details", id = article.ArticleID })

that has been retired in the recent ASP.NET MVC incarnation.

flag

49% accept rate

6 Answers

vote up 14 vote down

I think what you want is this:

Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID }, null)

This uses the following method ActionLink signature:

public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object values, object htmlAttributes)

This avoids hard-coding any routing logic into the link.

 <a href="/Item/Login/5">Title</a>

This will give you the following html output, assmuming:

  1. article.Title = "Title"
  2. article.aritcleID = 5
  3. you still have the following route defined

    routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults );

link|flag
But, doesn't this give out a URL like /Item/Login?id=5 ? – Adhip Gupta Oct 14 '08 at 14:28
NO this will give the following route: localhost:23445/Item/Login/5 – Joseph Kingry Oct 21 '08 at 13:41
What's strange is if you miss out the last parameter, it appends for me ?Length=8 to the current action – Chris S Aug 19 at 10:22
vote up 6 vote down

You might want to look at the RouteLink method.That one lets you specify everything (except the link text and route name) via a dictionary.

link|flag
vote up 2 vote down

I can't comment yet but wanted to add to Joseph Kingry's answer. He provided the solution but at first I couldn't get it to work either and got a result just like Adhip Gupta. And then I realized that the route has to exist in the first place and the parameters need to match the route exactly. So I had an id and then a text parameter for my route which also needed to be included too.

Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID, title = article=Title }, null)

link|flag
This is just what I needed - I had forgotten to add the final null argument. Thanks. – Ian Oxley Mar 26 at 14:39
vote up 0 vote down
Html.ActionLink(article.Title, "Login/" + article.ArticleID, 'Item")
link|flag
This works for me... – zidane Sep 23 at 14:11
It's Work for me to – Cédric Boivin Dec 6 at 15:18
vote up 0 vote down

hey .. i'm having a problem in the same context .. i'm passing an object as a parameter in the Html.ActionLink method .. and on retrieving the object in the ActionResult definition the value becomes null..

<>

<%= Html.ActionLink("Add To Cart", "AddToCart", new { Controller = "Cart", AddedProduct = ViewData.Model })%>

public class CartController : MasterController { public ActionResult AddToCart(Models.ProductModel AddedProduct) { List ShoppingCartList = new List(); ShoppingCartList.Add(AddedProduct); Session["ShoppingCart"] = ShoppingCartList; return View("ProductToCartSuccess", AddedProduct); } }

link|flag
vote up -2 vote down

Html.ActionLink(article.Title, article.ArcticleID, "Articles/Details")

link|flag

Your Answer

Get an OpenID
or

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