Consolidated ASP Classic MVC framework from best components
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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.