Как удалить пробелы при обновлении элемента управления gridview
Я пытаюсь обновить текстовое поле gridview, чтобы удалить пробелы
Что я уже пробовал:
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; } } }
Karthik_Mahalingam
пробовать
if (e.Row.RowType == DataControlRowType.DataRow && e.Row.RowState == DataControlRowState.Edit) { your code }