Click here to Skip to main content
15,891,607 members

Comments by george4986 (Top 200 by date)

george4986 4-May-17 7:37am View    
try this
Value = Value.Replace("&lt;", "<");
Value = Value.Replace("&gt;", ">");
george4986 4-May-17 7:33am View    
Deleted
try this
  Value = Value.Replace("<", "<");
  Value = Value.Replace(">", ">");
george4986 26-Sep-16 1:06am View    
Working Code Thanks For Your Effort -> Joezer BH
george4986 10-Aug-16 1:56am View    
doesn't worked in my case.Thanks for sparing your time ;-)
george4986 16-Jan-15 0:32am View    
Awesome it works , thanks CHill ;-)
my code is
DataSet ds = objCon.DataSet;
DataTable[] dta = new DataTable[ds.Tables.Count];
ds.Tables.CopyTo(dta, 0);
ds.Tables.Clear();
foreach (DataTable t in dta.OrderBy(c => c.TableName))
{
ds.Tables.Add(t);
}