Hi all, i created some TextBox inside "ItemTemplate" tag using C#, But when i want to get such TextBox's Value. I found it don't allow me to call the TestBox ID directly. (only one row in"DataGrid") How can get the values of such TextBox inside "ItemTemplate? <script ..> private void Function1(Object sender, EventArgs E) { Label1.Text=Text1.Text; <--can not detect ID "Text1" } </script> <aspataGrid ID="DataGrid1" runat="server" . <asp:TemplateColumn> <ItemTemplate> . <asp: TextBox ID="Text1"....... runat="server">... . </ItemTemplate> </asp:TemplateColumn> . </aspataGrid>