A
axkixx
For whatever reason, I keep getting error of int.ToString() not
existing. Why not?
Has anyone encountered this problem before?
existing. Why not?
Has anyone encountered this problem before?
For whatever reason, I keep getting error of int.ToString() not
existing. Why not?
Has anyone encountered this problem before?
int nStartRow = (currentPage * dgTest.PageSize) + 1;
int nEndRow = nStartRow + dgTest.PageSize - 1;
Both nStartRow and nEndRow spit out value correctly as int data type,
but as soon as adding .ToString() method to each, I get the error
saying "nStartRow.ToString() does not exist". or "nStartRow.ToString()
does not exist".