I have the Home Controller and my Action name is Index. In My route config the routes like below.
routes.MapRoute( \"Default\", // Route name \"{c
try changing the index action to this:
public ActionResult Index(int? id = null) { return View(); }
This should do the trick. So you can pass the id as a param with the "/{value}" or just use "/?id={value}"