I have a UpdatePannel Button and a TextBox.Button is inside the UpdatePannel control and the TextBox is out side the pannel control so i want print some text in the TextBox on the button click which is inside the UpdatePannel control.
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" Text="Button" />
</ContentTemplate>
</asp:UpdatePanel>
Any ideas????
I want the TextBox out side the SAME UpdatePannel.Button should be in the UpdatePannel.can i have 2 UpdatePannels.one for the TextBox and another for the Button????