Posted on: 12/30/2013 9:48:55 PM | Views : 534

Please help me fix my code below -- I have a return syntax error:
code
protected DataView SortDataTable(DataTable dataTable, bool isPageIndexChanging)         {             dynamic dt = Session["GVTable"] as DataTable;             if (dt != null)             {                  DataView dataView = new DataView(dt);                  if (GridViewSortExpression != string.Empty)                  {   ...

Go to the complete details ...