I have a route like this in my global.asax.cs
:
routes.MapRoute(
"NewsArticles",
"News/{page}",
new { controller = "News", action = "Index", archive = false }
);
How can I restrict access to this route so that it's only encountered if the user uses an integer?