How can I add a css class to an updatepanel in ASP.Net?

后端 未结 2 1641
粉色の甜心
粉色の甜心 2021-02-11 16:00

How can I add a css class to an updatepanel in the c# code behind file of asp.net

2条回答
  •  梦谈多话
    2021-02-11 16:28

    As you've seen the update panel doesn't have a css class property. So since it can't be done directly you need a work around; there are two (Grabbed from UpdatePanel and CSS) that can get the behavior you desire.

    One is to surround the update panel with a div:

    
    

    The other is to apply a css selector based on the update panel's id:

    
    

    Yet another way not mentioned in the article is surround the panel in a div and style the update panel based on it rendering as a div:

    
    
    

提交回复
热议问题