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.

21 line
1.1KB

  1. <%
  2. pageTitle = "Classic ASP App"
  3. badgeClass = "ok"
  4. badgeText = "App class bootstrapped"
  5. %>
  6. <!--#include file="_Header.asp" -->
  7. <h1>Welcome to your ASP Classic application</h1>
  8. <p>The request is now being handled by <code>Core/Controllers/HomeController.asp</code>.</p>
  9. <table>
  10. <tr><th>Resolved Route</th><td><%= Server.HTMLEncode(oController.App.Route) %></td></tr>
  11. <tr><th>Request Method</th><td><%= Server.HTMLEncode(oController.App.RequestMethod) %></td></tr>
  12. <tr><th>Server Name</th><td><%= Server.HTMLEncode(oController.App.ServerName) %></td></tr>
  13. <tr><th>Server Port</th><td><%= Server.HTMLEncode(oController.App.ServerPort) %></td></tr>
  14. <tr><th>Physical Root</th><td><%= Server.HTMLEncode(oController.App.PhysicalRoot) %></td></tr>
  15. <tr><th>Started At</th><td><%= Server.HTMLEncode(CStr(oController.App.StartedAt)) %></td></tr>
  16. <tr><th>Registered Services</th><td><%= oController.ServiceSummary %></td></tr>
  17. </table>
  18. <p>Try a pattern route: <a href="/greet/World">/greet/World</a>
  19. or <a href="/greet/World/42">/greet/World/42</a></p>
  20. <!--#include file="_Footer.asp" -->

Powered by TurnKey Linux.