25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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.