Consolidated ASP Classic MVC framework from best components
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
540B

  1. <!--#include file="..\core\autoload_core.asp" -->
  2. <%
  3. ' Define 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.