GridView行にクリックイベントを追加


行のクリック・イベントをサーバー・コントロールに渡して実行します.
protected void ParentGridView_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowIndex >= 0 )
            {
                e.Row.Attributes.Add("id", "parent"+e.Row.RowIndex.ToString());
                e.Row.Attributes.Add("onclick", ClientScript.GetPostBackClientHyperlink(e.Row.Cells[9].FindControl("LinkButtonShowChild"), "")); 
            } 
        }