Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Old post - but here's what I do whenthe Edit button is clicked... protected virtual void gv_RowEditing(object sender, GridViewEditEventArgs e) { gv.EditIndex = e.NewEditIndex; BindGrid(); if (UseMultiLineEditTextBox) { DataSet ds = new DataSet(); ds.ReadXml(HttpContext.Current.Server.MapPath(xmlFile)); try { for (int j = 0; j < ds.Tables[0].Columns.Count; j++) { if (FieldMultiLineCommaDelimit.ToUpper().Contains(ds.Tables[0].Columns[j].ColumnName.ToUpper())) { TextBox …
The End.
james.samek