im beginner with QtWebKit i build simple web frame that loaded page ( server side ) and when from this page i submit data i like to catch the response string from the serve
You can use QNetworkReply class for it. QWebPage instances have networkAccessManager() method that returns a QNetworkAccessManager instance capable of sending requests and receiving responses.
You need to look for its finished signal.
void QNetworkAccessManager::finished ( QNetworkReply * reply )
This signal is emitted whenever a pending network reply is finished. The reply parameter will contain a pointer to the reply that has just finished.
QNetworkReply in its turn is an inheritor of QIODevice therefore you are able to call its readAll() method in order to receive the response data.
You may also find this question useful.