I connect my TextBoxes to the dataRow by the following code
TextBox1.Text = DataRow1.Item("ColumnName")
TextBox1.DataBind()
I have a set of TextBoxes databinded to the dataRow, Now I need to retrieve the DataRow which is connected to the TextBoxes. how can I get the DataRow.
Thanks