Hi,
I know there are a few threads on this but even though they helped me some, I am still running into some difficulty.
A bit of background. I am linking a Crystal Report file via a URL. This file has to be live meaning it has to login to a database so my URL contains both the login and password.
These files are intranet only for upper management so they will not amuse themselves by hacking into the webpage so I can use any method to hide the information.
I had tried hiding it into the HTML but when you clicked on it, the login still appeared in the address bar. So what I have done now is disabled right clicking so they can't view source and used 'onmouseover' and 'onmouseout' to hide the information.
However, the information still appears in the status bar on the bottom. To hide this, I used 'Onclick' and put in a bogus link but when you click it now of courses opens that incorrect link.
Am I doing something wrong here or is there a method to hide the status bar or at least have it show what I want it to show while opening the correct URL containing the login and password.
This is the relevant part of the code :
Ideas?
Thank you,
Phil
I know there are a few threads on this but even though they helped me some, I am still running into some difficulty.
A bit of background. I am linking a Crystal Report file via a URL. This file has to be live meaning it has to login to a database so my URL contains both the login and password.
These files are intranet only for upper management so they will not amuse themselves by hacking into the webpage so I can use any method to hide the information.
I had tried hiding it into the HTML but when you clicked on it, the login still appeared in the address bar. So what I have done now is disabled right clicking so they can't view source and used 'onmouseover' and 'onmouseout' to hide the information.
However, the information still appears in the status bar on the bottom. To hide this, I used 'Onclick' and put in a bogus link but when you click it now of courses opens that incorrect link.
Am I doing something wrong here or is there a method to hide the status bar or at least have it show what I want it to show while opening the correct URL containing the login and password.
This is the relevant part of the code :
Code:
<a
href="[URL unfurl="true"]http://domain.prv/reports/OnLine/1.rpt?init=actx&user0=&password0[/URL]
=*&connect=1" onclick="this.href='[URL unfurl="true"]http://domain.prv/reports/OnLine/1.rpt?init=actx&user0[/URL]
=*&password0=*&connect=1'"
onmouseover="window.status='[URL unfurl="true"]http://domain.prv/reports/managed/1.rpt';[/URL] return true;"
onmouseout="window.status='; return true;"
>
Outstanding severity 1 and 2
</a>
Ideas?
Thank you,
Phil