BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
grid[0, 3].Text = "MyHeaderForCol3";
To turn off column selections when you click a header, in the grid.AllowSelecions property, remove the Columns flag.
''if you have not added GridBoundColumns
Me.GridDataBoundGrid1.Binder.InternalColumns("Col1").HeaderText = "header for Col1"
''if you have added GridBoundColumns
Me.GridDataBoundGrid1.GridBoundColumns("Col1").HeaderText = "header for Col1"
>grid[0, 3].Text = "MyHeaderForCol3";
>
>To turn off column selections when you click a header, in the grid.AllowSelecions property, remove the Columns flag.