+2  A: 

Add a new route before your "IdOnly" route for the home page:

routes.MapRoute( _
    "HomePage", _
    "", _
    New With {.controller = "Page", _
              .action = "Details", _
              .id = "7"} _
)

RouteLink will use the first matched mapping in the routing table to generate the link.

Mehrdad Afshari
Elegant. Thank you.
Zack Peterson