Remove a CSS class from HTML element in the code behind file

后端 未结 7 2150
清歌不尽
清歌不尽 2021-02-19 03:15

I have the following on my interface / webform:

Now I have a condition in my

相关标签:
7条回答
  • 2021-02-19 03:57

    This will remove all CSS classes from the div with ID="mydiv"

    Me.mydiv.Attributes("class") = ""
    
    0 讨论(0)
提交回复
热议问题