In asp.net using a web server control but in visual studio why style attribute is not coming for the below code
<asp:Label ID = "UserLabel" runat = "server" CssClass = "LabelClass" AssociatedControlID = "UsernameTextBox" >Username</asp:Label>
By intellisense it should come right, but style attribute is not coming at all.
I am using visual studio 2010 , asp.net using C#
The
Styleproperty never shows on intellisense when using the asp server controls. The intellisense will show for the attributes after you typeStyle="The server control inherits System.Web.UI.Control, which doesn’t have
styleas a property.However, it will be rendered out to the HTML.