In asp.net 3.5, I am using a login control which has an id. When i set the id’s font to bold, it sets all the fields to bold. for eg., the login control has “Username”, “Password” & “Remember Me” and i want to set only the username & password fields bold and leave the remember field to normal.
My code is here –
<asp:Login runat="server"
id="BlogLogin" UserNameLabelText="Username" TitleText=""
MembershipProvider="EktronMembershipProvider" LoginButtonText="Login" RememberMeText="Remember Me"
DisplayRememeberMe="False">
</asp:Login>
How do i set this?
Thanks
In LoginControl,s smart tag click “Conver to Template” now all the controls become seperate.So you change the styles as you want.