Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6636219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:09:31+00:00 2026-05-25T23:09:31+00:00

Related Question: Adding custom OnTextChange event handler on custom TextBox In the related question

  • 0

Related Question: Adding custom OnTextChange event handler on custom TextBox

In the related question I asked how I could expose OnTextChange in my custom textbox control and we resolved it by:

public event EventHandler TextChanged
{
    add { customTextBox.TextChanged += value; }
    remove { customTextBox.TextChanged -= value; }
}

I am trying use TextChanged event like this when the control is implemented:

    <uc:CustomTextBox ID="customTextBox"
                      runat="server"
                      OnTextChanged="CustomTextBox_OnTextChanged">
    </uc:CustomTextBox>

This never seems to hit the following when running:

    protected void CustomTextBox_OnTextChanged(System.EventArgs e)
    {
     // Do something here
    }

Or hit:

    protected void CustomTextBox_OnTextChanged(object sender, EventArgs e)
    {
     // Do something here
    }

What am I doing wrong, what am I missing out and is this the best way or common practice way to do everything I am trying to do here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T23:09:31+00:00Added an answer on May 25, 2026 at 11:09 pm

    You need to set AutoPostBack=True property of TextBox.

    If you are designing a web user control then simply define public property to set True/False value of CustomTextBox in user control’s code-behind:

    public   bool AutoPostBack
        {
            get
            {
                return CustomTextBox.AutoPostBack;
            }
            set
            {
                CustomTextbox.AutoPostBack = value;
            }
        }
    

    If you are developing a custom web control then you can to override the AutoPostBack property for the customization. If you don’t want to customize AutoPostBack property then don’t override it.

    In case you override AutoPostBack property, please invoke the super class’s default implementation.

    public override  bool AutoPostBack
        {
            get
            {
                return base.AutoPostBack;
            }
            set
            {
                base.AutoPostBack = value;
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question is related to one I asked earlier: Adding buttons to a TabControl
A related question to one I asked earlier ... Just checking on something: Should
I asked a somewhat related question but I want it to make it more
In a related question I asked about creating a generic container. Using polymorphic templates
In a related question , I asked about Web Development. I came across something
I asked a related question about findbugs, but let's ask a more general question.
I asked a non-related question in another thread scons dependency problems that was solved
This question is related to following thread. Prism RegionAdapter - Removing then Adding View
This question is related to the question posted here: Why isn't my custom WCF
I have asked another question related to this in this thread Where to put

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.