Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
545B

  1. <%
  2. pageTitle = "Classic ASP App - Greet"
  3. badgeClass = "ok"
  4. badgeText = "Route matched with a parameter"
  5. %>
  6. <!--#include file="_Header.asp" -->
  7. <h1>Hello, <%= Server.HTMLEncode(oController.Name) %>!</h1>
  8. <% If oController.HasId Then %>
  9. <p>Visit reference: <code><%= Server.HTMLEncode(oController.Id) %></code></p>
  10. <% End If %>
  11. <p>This page is rendered by <code>GreetController</code>, matched from the pattern
  12. <code>/greet/{name}</code> or <code>/greet/{name}/{id}</code>.</p>
  13. <p><a href="/">Back home</a></p>
  14. <!--#include file="_Footer.asp" -->

Powered by TurnKey Linux.