Why am I unable to add a CSS Content Page in my Master Page Asp.Net? I've tried the following:
<asp:TextBox ID="name" runat="server"></asp:TextBox>
I then added the following CSS:
#name {
width:300px;
height: 300px;
}
However, the changes did not take effect. Can anyone help me resolve this issue?