I create a asp.net custom control
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="control.ascx.cs" Inherits="test.control.control" %>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
I have drop it in an aspx page and I want to use Text
property of the custom control but the custom control does not have Text property.
<uc1:control runat="server" id="control" />