Do not modify pin 10 after the setup function. Delete the "digitalWrite(10,LOW);" from the loop() function. The ethernet library code handles that pin really well. Unless you are in a "client." call, that pin is HIGH, and should be left that way.
I recommend separating the two functions. Leave the getPage function alone. Now write another function that handles the ST7735 display. You may need to use global variables to pass data from one function to the other.
if(!getPage(server,pageAdd)) Serial.print("Fail ");
else Serial.print("Pass ");
// add a function like this here
displayTFT();
totalCount++;
Then add a function like this at the end:
void displayTFT() {
Serial.println("TFT");
}
Do you see the pattern?