简体   繁体   中英

How to use css in asp.net for web server control?

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 Style property never shows on intellisense when using the asp server controls. The intellisense will show for the attributes after you type Style="

The server control inherits System.Web.UI.Control, which doesn't have style as a property.

However, it will be rendered out to the HTML.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM