i want that browser will accept request for only login page all other request should not be acceptable . actually i don't want to check that user is login or logged out from site with Authorize attribute. i just want to disable all requests of web pages(URL's) except login page from site.
something like:
routes.MapRoute(
"Default",
"{main}.mvc/{login}/{id}", ////////just example for only action to run///////
new { action = "Index", id = "" }
);