protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
    {
        GridViewRow row = GridView1.SelectedRow;   
        this.txtha81.Checked = bool.Parse(row.Cells[37].Text);
    }
以上是我的代码, 总是报错,报错详情如下:
"该字符串未被识别为有效的布尔值。"
这个代码应该如何改呢