Okay, I'm pretty new to ASP.Net / MVC 2. Can anyone explain how to use the Html.ActionLink thing? I understand that the first parameter is the displayed text, but for the second one, what is the action name??

link|improve this question

1  
This question is far too elementary. You should first read up on the basics of ASP.NET MVC: asp.net/mvc/tutorials – Kirk Woll Dec 18 '10 at 17:48
feedback

1 Answer

up vote 1 down vote accepted

User action in the asp.net MVC framework is based around Controllers and Actions that enable you to create pages (or links) to specific sections.

For example you might want a page to edit a Product so you have a Product Controller with an Edit Action. You can then create a Html ActionLink that will direct the user to this page.

In summary the 'action' will be the ActionResult method you want to direct your user to.

<%: Html.ActionLink("Edit Product", "Edit", "Product") %>

public class ProductController : Controller
{
    public ActionResult Index() // Index is your action name
    {
    }

    public ActionResult Edit(int id) // Edit your product
    {
    }
}
link|improve this answer
and in this case you could have a view in Index() with this: <%: Html.ActionLink("Click me", "Edit"); %> in the asp:Content? What would then be an example of something you could have in the Edit action? – DarkLightA Dec 18 '10 at 17:51
For a link to the edit page you would need <%: Html.ActionLink("click me", "Edit", "Product", new { id = 1 } %>. The Edit action in the product controller requires a value for 'id' so when you create your actionlink you need to specify the new {id = 1} (in this example). – David Liddle Dec 18 '10 at 17:56
So then how would I make this Edit action link to, let's say, HomeController (main page). And why would I need a variable declaration for it? – DarkLightA Dec 18 '10 at 18:08
@DarkLightA you would of course want to edit a product. and the product must have a unique id. the extra variable is actually the id of product which you are going to edit. – Zain Shaikh Dec 18 '10 at 18:20
feedback

Your Answer

 
or
required, but never shown

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