Re: How to Hide browser status bar Message from client [message #170155 is a reply to message #170118] |
Wed, 13 October 2010 07:09 |
gordon
Messages: 2 Registered: June 2007
Karma:
|
Junior Member |
|
|
> I am using iframe with url of some other domain,the snippet is as
> follows:
>
> name of the page is : test.php
> domain : www.domain.com
> url : http://www.domain.com/test.php
>
> Here test.php page contains the following code
>
> <html>
> <head>
> </head>
> <body>
> <iframe src="http://www.testdomain.com/index.php" height="500px;"
> width="900px;"></iframe>
> </body>
> </html>
>
> when i call test.php from domain "www.domain.com" in the status bar i
> found " waiting/tranfering from www.testdoamin.com...." message,please
> guide me how can i hide this message from visitor,because we want our
> client never know the files are executing from testdomain.com.So
I'd like to suggest that you're going to have a very hard time
hiding the message from a visitor as long as you *are* transferring
data from www.testdoamin.com, because that message shows up before
you've even connected, which is before any URL rewrite or Javascript
runs.
The way out, as one poster has suggested, is to *NOT* ask the user's
browser to transfer any data whatever from that domain.
Gordon
|
|
|