How can I add a css class to an updatepanel in the c# code behind file of asp.net
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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: