0

是否可以像使用数据表一样调试 gridview 对象。我的意思是向对象添加手表然后直观地查看数据?

感谢您的帮助。

4

1 回答 1

1

是的,你可以调试你的 GridView,你使用RowDataBound Event

  <asp:gridview id="GridView1" 
    datasourceid="...." 
    autogeneratecolumns="true"
    onrowdatabound="GridView1_RowDataBound" 
    runat="server">
  </asp:gridview>


void GridView1_RowDataBound(Object sender, GridViewRowEventArgs e)
  {

    if(e.Row.RowType == DataControlRowType.DataRow)
    {
        Console.Write(e.Row.Cells[1].Text);
        .....
    }

  }

链接:http: //msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowdatabound.aspx

于 2012-09-12T10:21:27.607 回答