I want to implement the own custom TextBox control in Asp.Net(C#).
Please give me some idea and links.
I want to implement the own custom TextBox control in Asp.Net(C#). Please give me
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.
A control is simply a class. Create your own class deriving from the TextBox class. Override methods. Handle events. Add properties.
And then ask a specific question, and you’ll get specific answers. Do a search on this site and you’ll find recommendations for books on control development.
You’ll also find http://asp.net to be of use.