Contact.cshtml 451 B

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