Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following controller:

public class ItemController : Controller
{
    private SomeDbEntities _db= new SomeDbEntities ();

    //
    // GET: /Item/

    public ActionResult Index()
    {
        var items = _db.Items.ToList();

        return View(items);
    }

    public ActionResult Decription(int id)
    {
        var item = _db.Items.Single(a => a.ItemID == id);

        return View(item); 
    }

}

and 2 views:

Index.cshmtl

@model IEnumerable<Web.Models.Item>

@{
    ViewBag.Title = "Index";
 }

<h2>Index</h2>

<ul>
@foreach (var item in Model)
{

    <li>@Html.ActionLink(item.Name, "Description", new { id = item.ItemID})</li>
}

Description.cshtml

@model Web.Models.Item

@{
    ViewBag.Title = "Decription";
 }

 <h2>Decription</h2>
 <p>@Model.Description</p>

Route

public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Item", action = "Index", id = UrlParameter.Optional }
        );

        routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );


    }

And when i try to reach i.e. http://localhost:12952/Item/Description/2 i am getting Server error:

HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.

share|improve this question
Is your Cassini server running? – Jakub Konecki May 21 '12 at 10:13
No. I am running it on usual ASP.NET Web Development Server. – Predrag Pejic May 21 '12 at 10:14
That's Cassini ;-) – Jakub Konecki May 21 '12 at 10:16
@JakubKonecki wow! I didn't know it has a name. Cassini sounds good :D – allentranks May 21 '12 at 10:29

closed as too localized by casperOne May 22 '12 at 15:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 5 down vote accepted

Your action name is "Decription" while the url is "../Description/..". They don't match.

share|improve this answer
Nicely spotted ;-) – Jakub Konecki May 21 '12 at 10:16
lol. tnx :) embarrassing – Predrag Pejic May 21 '12 at 10:16

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