route :

   routes.MapRoute("Default", "{controller}/{action}/{id}/{args1}/{args2}/{args3}", // URL with parameters
              new
              {
                  controller = "Home",
                  action = "Index",
                  id = UrlParameter.Optional,
                  args1 = UrlParameter.Optional,
                  args2 = UrlParameter.Optional,
                  args3 = UrlParameter.Optional
              }
          );

Creating Link using below code:

 @Html.ActionLink("Photos", "List", "Photos");//"photos" is controller name and "list" is action name

its generating anchor but url/link is blank.

I have modified Route as i required some extra parameters for some actions.

I am new to MVC, Please provide me solution.

link|improve this question

What's wrong with using the "RouteValues"-object for parameters? – Andreas Carlbom Dec 5 '11 at 7:17
When i pass route values then its generating url but for this link i don't wants url with parameters. – Rajesh Rolen- DotNet Developer Dec 5 '11 at 7:21
feedback

1 Answer

up vote 2 down vote accepted

Seems like default route is not active, if so then activate it.

routes.MapRoute(
                "Default", // Route name
                "{controller}/{action}/{id}", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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