if (!Page.IsPostBack)
{
//绑定你的DataGrid
}

解决方案 »

  1.   

    try:CheckBox CB;
    string m_returnval_string_f="";
    foreach(DataGridItem item in DG_Dictionary.Items)
    {
      CB=(CheckBox)item.FindControl("Chk_Record");
      if(CB!=null&&CB.Checked)
         m_returnval_string_f+=DG_Dictionary.Items[i].Cells[1].Text;
    }
      

  2.   

    试一下:   
      m_returnval_string_f=m_returnval_string_f+(DG_Dictionary.Items[i].Cells[1].Text).ToString();
      

  3.   

    调试下看看CB.Checked和DG_Dictionary.Items[i].Cells[1].Text的值,也许问题便好发现了!然后再试试上面大侠们的方法!
      

  4.   

    根据 acewang(大灰很) 的提示解决问题了,谢谢大家的参与
    结贴