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