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 ...