Forum Moderators: open
I'm looking for a good way to achieve per-page CSS, so that I can only apply certain rules to a specified page.
My dream would be able to do it in the page directive, like this:
<%@ Page Title="Whatever" ID="ContactPage" %>
<asp:Content...>
</asp:Content>
and then
<%@ Master %>
<body id="<%= Page.ID %>">
..
</body>