We can use below code to SORT a DataTable
DataTable DtEnvelope = (DataTable) Session["DtEvelopeFromSession"];
DtEnvelope = DtEnvelope.AsEnumerable().OrderBy(row => row.Field<Int32>("Sequence")).CopyToDataTable();
Using LINQ 'OderBy' method very easily we can SORT a DataTable.