像使用数据表一样调试gridview对象

时间:2012-09-10 12:46:50

标签: c# .net vb.net visual-studio

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

寻求帮助。

1 个答案:

答案 0 :(得分: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