Error -106 when loading url

Hello,

I’m trying to load small page in iframe on the php pages in exe file, which catches and displays few data from the online server. Everything works fine, but when the computer isn’t connected to internet, it displays the message instead of iframe: Error -106 when loading url http://…requested.page…/

I would like to change the error message and protect the online http address before the users. It’s possible?

Thanks,
Tomas

“Error -106 when loading url” is not a standard message of ExeOutput. Is it coming from your PHP code?

Looks like Chromium network error:

// The Internet connection has been lost.
122 NET_ERROR(INTERNET_DISCONNECTED, -106)

http://src.chromium.org/viewvc/chrome/trunk/src/net/base/net_error_list.h?view=markup

Yes, it is a chromium network error. I don’t know, how can i change this error status. So I make connection test before loading iframe and when the test function found disconnect from internet, iframe will hide.
Thanks for help,
Tomas