我有这个代码,它基于gridview的选定行中的单元格填充文本框
protected void GridView1_SelectedIndexChanged(object sender,EventArgs e) { txtComment.Text = row.Cells[14].Text.Trim(); }
它显示& nbsp;如果Cell [14]没有数据,则在txtComment文本框中.
有没有办法防止& nbsp;当所选行的单元格中没有数据时出现?
编辑
我尝试过这个并没有用
if (row.Cells[14].Text.Trim().Length > 1) { txtComment.Text = row.Cells[14].Text.Trim(); } else { txtComment.Text = row.Cells[14].Text = ""; }
================================================== =================
这很有效
if (row.Cells[14].Text.Trim()!=" ") { txtComment.Text = row.Cells[14].Text.Trim(); } else { txtComment.Text = row.Cells[14].Text = ""; }
解决方法
我也有像这样的问题,我发现这也很有用:
txtComment.Text = row.Cells[14].Text.Replace(" ","");
我希望它可以帮助你:)