I have an custom control that extend System.Web.UI.UserControl. Is it possible to inherit user control from this custom control?
I have an custom control that extend System.Web.UI.UserControl. Is it possible to inherit user
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.
So long as you have not marked the control as
sealed, you can inhrit from it and create other user controls that use the functionality already written.So long as
UserControlis part of the inheritance chain, everything should work as you would expect.