Change routing
Just accomodate routing for it and remove id default to be optional parameter:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index" } // defaults
);
but those defaults are never going to be used so:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}" // URL with parameters
);
This is the actual route that needs to be defined.
Your controller and action aren't ever going to be omitted from the URL as id is required and is the last one in URL definition which means that the first pair will have to be there as well.
I'm not sure if that's exactly what you need but, based on the current state of your question this should do the trick for you. But if you require your id, to have some predefined value, you can give it a different value in your route definition:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = 1 } // defaults
);
This makes it possible that all three can be omitted from the URL and all of them would have a particular value.
Route constraints to define id format
You can also use route constraints to tell routing how URL parameters should look like. Since your id seems to must be numeric this is also one of the possibilities:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index" }, // defaults
new { id = "\d+" } // constraints
);
After your edit
There are actually two solutions to your problem.
- Proper routing to define required
id for some routes
- Action method selector filter to declaratively mark actions that they require certain parameters
Solution 1: Routing
This one defines several routing definitions but hardcode your actions that require id parameter:
routes.MapRoute(
"RequiresId",
"{controller}/{action}/{id}", // URL with parameters
null,
new { action = "Detail" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}" // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new { action = "(?!Detail).+" } // any action except "Detail"
);
First route defines that all controllers with action method Detail require id parameter. This is simple as long as all controllers with these actions have same requirements (which may likely be in your case). But when this is not true it will become more complicated because you'll have to provide constraints per controller.
Solution 2: Action Method Selector Filter
This solution requires only default route with optional id. A custom action method selector filter (which is rarely known and seldom used) will help you write code like:
[RequiresRouteValues("id, name")]
public ActionResult Detail(int id, string name)
{
...
}
You'd put this on those methods that require it. If that particular parameter will not be present Controller action invoker will not be able to find a suitable method hence returning a 404.
I've talked about this in much detail on my blog. It also include filter's code which looks like this:
/// <summary>
/// Represents an attribute that is used to restrict action method selection based on route values.
/// </summary>
[SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public sealed class RequiresRouteValuesAttribute : ActionMethodSelectorAttribute
{
#region Properties
/// <summary>
/// Gets required route value names.
/// </summary>
public ReadOnlyCollection<string> Names { get; private set; }
/// <summary>
/// Gets or sets a value indicating whether to include form fields in the check.
/// </summary>
/// <value><c>true</c> if form fields should be included; otherwise, <c>false</c>.</value>
public bool IncludeFormFields { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to include query variables in the check.
/// </summary>
/// <value>
/// <c>true</c> if query variables should be included; otherwise, <c>false</c>.
/// </value>
public bool IncludeQueryVariables { get; set; }
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
private RequiresRouteValuesAttribute()
{
this.IncludeFormFields = true;
this.IncludeQueryVariables = true;
}
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
/// <param name="commaSeparatedNames">Comma separated required route values names.</param>
public RequiresRouteValuesAttribute(string commaSeparatedNames)
: this((commaSeparatedNames ?? string.Empty).Split(','))
{
// does nothing
}
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
/// <param name="names">Required route value names.</param>
public RequiresRouteValuesAttribute(IEnumerable<string> names)
: this()
{
if (names == null || names.Count().Equals(0))
{
throw new ArgumentNullException("names");
}
// store names
this.Names = new ReadOnlyCollection<string>(names.Select(val => val.Trim()).ToList());
}
#endregion
#region ActionMethodSelectorAttribute implementation
/// <summary>
/// Determines whether the action method selection is valid for the specified controller context.
/// </summary>
/// <param name="controllerContext">The controller context.</param>
/// <param name="methodInfo">Information about the action method.</param>
/// <returns>
/// true if the action method selection is valid for the specified controller context; otherwise, false.
/// </returns>
public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo)
{
if (controllerContext == null)
{
throw new ArgumentNullException("controllerContext");
}
// always include route values
HashSet<string> uniques = new HashSet<string>(controllerContext.RouteData.Values.Keys);
// include form fields if required
if (this.IncludeFormFields)
{
uniques.UnionWith(controllerContext.HttpContext.Request.Form.AllKeys);
}
// include query string variables if required
if (this.IncludeQueryVariables)
{
uniques.UnionWith(controllerContext.HttpContext.Request.QueryString.AllKeys);
}
// determine whether all route values are present
return this.Names.All(val => uniques.Contains(val));
}
#endregion
}
The first one makes things complicated in applications with several controllers and different constraints related to them. The second one is elegant and applies to simple and complex scenarios.
I would of course choose solution 2. But take me as a biased developer in this case.