Follow the approach to find the Textboxes as per below example (Modify according to your need)
protected void Button1_Click(object sender, EventArgs e)
{
foreach (GridViewRow row in GridView1.Rows)
{
string textBoxText = ((TextBox)row.FindControl("TextBox1")).Text;
}
}
Hope it helps :)