Consolidated ASP Classic MVC framework from best components
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

14 рядки
548B

  1. <!--#include file="..\core\autoload_core.asp" -->
  2. <%
  3. ' Define starter application routes
  4. router.AddRoute "GET", "/home", "HomeController", "Index"
  5. router.AddRoute "GET", "/", "HomeController", "Index"
  6. router.AddRoute "GET", "", "HomeController", "Index"
  7. router.AddRoute "GET", "/404", "ErrorController", "NotFound"
  8. ' Dispatch the request (resolves route and executes controller action)
  9. MVC.DispatchRequest Request.ServerVariables("REQUEST_METHOD"), _
  10. TrimQueryParams(Request.ServerVariables("HTTP_X_ORIGINAL_URL"))
  11. %>

Powered by TurnKey Linux.