当前位置导航:炫浪网>>网络学院>>网页制作>>ASP.NET教程

SPGridView字段(单元格)换行

  前台:

  <asp:BoundField DataField="Integral" HeaderText="积分" />

  后台:

  dr["CompanyName"] += dt.Rows[j]["CompanyName"].ToString() + "\n";

  代码

  protected void SPGridView1_RowDataBound(object sender, GridViewRowEventArgs e)

  {

  if (e.Row.RowType == DataControlRowType.DataRow)

  {

  e.Row.Cells[1].Text = KeepPre(e.Row.Cells[1].Text);

  }

  }

相关内容
赞助商链接