You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
298B

  1. <%
  2. Class NotFoundController
  3. Private m_App
  4. Public Sub Init(ByRef app, ByRef routeParams)
  5. Set m_App = app
  6. End Sub
  7. Public Sub Execute()
  8. Response.Status = "404 Not Found"
  9. End Sub
  10. Public Property Get App()
  11. Set App = m_App
  12. End Property
  13. End Class
  14. %>

Powered by TurnKey Linux.