I have a rule defined as
routes.MapRoute(
"DefaultVideo", // Route name
"{action}/{id}/{title}", // URL with parameters
new { controller = "Home", title = "" },
new { id = new IDConstraint() });
However, this is catching partialview codes too, that is strictly supposed to be used as partial views. How do I distinguish that in my code that not to catch code meant for partialview as routing thing?