I have a link to an external CSS file in the head section of my Master page.
<link href="style.css" rel="stylesheet" type="text/css" />
Although I can apply the style in child pages during design time...
<asp:Label ID="Label" runat="server" CssClass="BodyText" Text="This is a link"></asp:Label>
...the child pages have no style during run time.
What am I overlooking here?