本文介绍了更新gridview控件时如何剥离空格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试更新gridview文本框以删除空格



我尝试过:



I am trying to update a gridview textbox to remove white spaces

What I have tried:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
       {

           if (e.Row.RowType == DataControlRowType.DataRow && GridView1.EditIndex != e.Row.RowIndex)
           {

               TextBox Tstr = (TextBox)e.Row.FindControl("TextBox1");
               if ( !string.IsNullOrEmpty(Tstr.Text))
               {
                   string str = Tstr.Text;
                   str = str.Replace(" ", String.Empty);
                   Tstr.Text = str;
               }

           }
       }

推荐答案


这篇关于更新gridview控件时如何剥离空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 22:33