c# – 防止将空的Gridview数据填充到文本框中“”
发布时间:2020-12-15 18:19:36 所属栏目:百科 来源:网络整理
导读:我有这个代码,它基于gridview的选定行中的单元格填充文本框 protected void GridView1_SelectedIndexChanged(object sender,EventArgs e) { txtComment.Text = row.Cells[14].Text.Trim(); } 它显示 nbsp;如果Cell [14]没有数据,则在txtComment文本框中. 有
我有这个代码,它基于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(" ",""); 我希望它可以帮助你:) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |