Hello,
I am having an issue where I am wanting to pass data from a Gridview that is inside an UpdatePanel to a Textbox that is outside of it. 
Here is my Html:
<asp:TextBox ID="txtTypeBarrel" runat="server" Width="300PX"></asp:TextBox> <asp:Panel ID="Panel1" runat="server"> <asp:UpdatePanel runat="server"> <ContentTemplate> <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" OnSelectedIndexChanged="GridView1_SelectedIndexChanged"> <AlternatingRowStyle BackColor="#CCCCCC" /> <Columns> <asp:BoundField DataField="Code" HeaderText="Code" /> < ...

Go to the complete details ...