Consolidated ASP Classic MVC framework from best components
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

11 wiersze
530B

  1. <!--#include file="HomeController.asp" -->
  2. <!--#include file="ErrorController.asp" -->
  3. <%
  4. ' Register each controller's own singleton accessor with the shared
  5. ' ControllerFactory, by reference (GetRef), so the MVC dispatcher (a WSC,
  6. ' which cannot see these factory functions directly) never has to Execute/
  7. ' Eval a route-supplied string to resolve a controller class.
  8. Call ControllerFactory().Register("HomeController", GetRef("HomeController"))
  9. Call ControllerFactory().Register("ErrorController", GetRef("ErrorController"))
  10. %>

Powered by TurnKey Linux.