asp.net – GridView的RowDataBound函数

前端之家收集整理的这篇文章主要介绍了asp.net – GridView的RowDataBound函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含3个字段的DataTable:ACount,BCount和DCount.如果ACount< 0然后我需要在GridView的一列中显示'S'.如果ACount> 0然后我必须在该列中显示“D”(在标签中).与BCount和DCount相同.如何在RowDataBound函数中执行此条件检查?

解决方法

GridView OnRowDataBound活动是您的朋友:
<asp:gridview
  id="myGrid" 
  onrowdatabound="MyGrid_RowDataBound" 
  runat="server">

  <columns>
    <asp:boundfield headertext="ACount" datafield="ACount"  />
    <asp:boundfield headertext="BCount" datafield="BCount" />
    <asp:boundfield headertext="DCount" datafield="DCount" />
    <asp:templatefield headertext="Status">
      <itemtemplate>
        <asp:label id="aCount" runat="server" />
        <asp:label id="bCount" runat="server" />
        <asp:label id="dCount" runat="server" />
      </itemtemplate>
    </asp:templatefield>
  </columns>
</asp:gridview>

// Put this in your code behind or <script runat="server"> block
protected void MyGrid_RowDataBound(object sender,GridViewRowEventArgs e)
{
  if(e.Row.RowType != DataControlRowType.DataRow)
  {
    return;
  }

  Label a = (Label)e.Row.FindControl("aCount");
  Label b = (Label)e.Row.FindControl("bCount");
  Label d = (Label)e.Row.FindControl("dCount");

  int ac = (int) ((DataRowView) e.Row.DataItem)["ACount"];
  int bc = (int) ((DataRowView) e.Row.DataItem)["BCount"];
  int dc = (int) ((DataRowView) e.Row.DataItem)["DCount"];

  a.Text = ac < 0 ? "S" : "D";
  b.Text = bc < 0 ? "S" : "D";
  d.Text = dc < 0 ? "S" : "D";
}

我不确定你想要’S’和’D字符呈现的位置,但你应该能够重新设置以满足你的需求.

原文链接:https://www.f2er.com/aspnet/251594.html

猜你在找的asp.Net相关文章