c# – 防止将空的Gridview数据填充到文本框中“ ”

前端之家收集整理的这篇文章主要介绍了c# – 防止将空的Gridview数据填充到文本框中“ ”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码,它基于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(" ","");

我希望它可以帮助你:)

原文链接:https://www.f2er.com/csharp/98183.html

猜你在找的C#相关文章