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

后端 未结 3 1159
再見小時候
再見小時候 2021-02-11 15:46

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

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-11 16:16

    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:

    
    
    

提交回复
热议问题