Contact.cshtml 471 B

1234567891011121314151617181920
  1. @page
  2. @model ContactModel
  3. @{
  4. ViewData["Title"] = "Contact";
  5. }
  6. <h2>@ViewData["Title"]</h2>
  7. <h3>@Model.Message</h3>
  8. <address>
  9. One Microsoft Way<br />
  10. Redmond, WA 98052-6399<br />
  11. <abbr title="Phone">P:</abbr>
  12. 425.555.0100
  13. </address>
  14. <address>
  15. <strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
  16. <strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@example.com</a>
  17. </address>