I have created a control and added a TextBox inside that control, I am attaching that control to a .aspx page via
<%@ Register Src="../UserControls/AccountSearchControl.ascx" TagName="SearchControl"
TagPrefix="csr" %>
and
<csr:SearchControl ID="AccountSearchControlBox" runat="server" OnSearchButtonClick="RetreiveAccounts" />
On .aspx.cs file I want to access the value of the TextBox inside the user control ... how to achieve that ?