マスターページがあり、このマスターページの一部を* .cssファイルにバインドしたいのですが、成功しません。これが私のマスターページコードです。
<head runat="server" >
<title></title>
<link href="~/Styles/Test.css" rel="stylesheet" type="text/css" />
<asp:ContentPlaceHolder ID="HeadContent" runat="server" >
</asp:ContentPlaceHolder>
</head>
<body>
<form runat=server>
<body>
<table width=100% border=1>
<tr width=100%>
<td ></td>
<div class=mainbody>
<td width=80% align=center>
<asp:ContentPlaceHolder ID="MainContent" runat="server"></asp:ContentPlaceHolder>
</td>
</div>
<td ></td>
</tr>
</table>
</body>
</form>
</body>
そして私のcssファイルに私は持っています:
body
{
}
mainbody
{
background-color:#a0ccff
}
コイル状になっているので、教えてください、なぜうまくいかないのですか?