BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hashtable savePDs = new Hashtable(); GridBoundColumnsCollection gbcc = this.gridDataBoundGrid1.GridBoundColumns; if(gbcc.Count > 0) { foreach(GridBoundColumn gbc in gbcc) savePDs.Add(gbc.MappingName, gbc.PropertyDescriptor); } this.gridDataBoundGrid1.DataSource = dt; if(savePDs.Count > 0) { foreach(string s in savePDs.Keys) gbcc[s].PropertyDescriptor = (PropertyDescriptor) savePDs[s]; } savePDs.Clear();