Disable Status Bar
-
Dear Experts, I want to secure my application so i need to Disable Status Bar so that when mouse kept on the link it wont display the informations in the Status Bar. Thanks in advance
Padmanabhan My Articles: Articles[^] My latest Article: Word Automation[^]
-
Dear Experts, I want to secure my application so i need to Disable Status Bar so that when mouse kept on the link it wont display the informations in the Status Bar. Thanks in advance
Padmanabhan My Articles: Articles[^] My latest Article: Word Automation[^]
You can use javascript to do this, but how on earth do you think this will secure your application in any way?
-
Dear Experts, I want to secure my application so i need to Disable Status Bar so that when mouse kept on the link it wont display the informations in the Status Bar. Thanks in advance
Padmanabhan My Articles: Articles[^] My latest Article: Word Automation[^]
You can't disable the status bar on the main window unless you have used window.open to create. You can use JavaScript to set the statusbar text for the link to be empty
<a href="..." onMouseOver="status.text=''">
I know the language. I've read a book. - _Madmatt
-
You can't disable the status bar on the main window unless you have used window.open to create. You can use JavaScript to set the statusbar text for the link to be empty
<a href="..." onMouseOver="status.text=''">
I know the language. I've read a book. - _Madmatt
... onmouseover="self.status=''; return true;" ...
FTFY :) Downvote it all you like, the fact remains my "correction" is correct and (no offence meant, but) Mark's snippet was not.
modified on Monday, September 27, 2010 1:08 PM
-
... onmouseover="self.status=''; return true;" ...
FTFY :) Downvote it all you like, the fact remains my "correction" is correct and (no offence meant, but) Mark's snippet was not.
modified on Monday, September 27, 2010 1:08 PM
-
Dear Experts, I want to secure my application so i need to Disable Status Bar so that when mouse kept on the link it wont display the informations in the Status Bar. Thanks in advance
Padmanabhan My Articles: Articles[^] My latest Article: Word Automation[^]
Your application will not be any more secure by hiding the status. Users can still right click on the links and copy the location. They can also view source. Any of the tricks you use to disable any of those options can be defeated by visiting your site with javascript turned off. If you don't want users to visit a page directly then you need to implement something different that checks their access rights in the OnInit of each page.
-
... onmouseover="self.status=''; return true;" ...
FTFY :) Downvote it all you like, the fact remains my "correction" is correct and (no offence meant, but) Mark's snippet was not.
modified on Monday, September 27, 2010 1:08 PM
Yeah, I know been a long time since I've done it, got the names wrong. But got the meaning. As for the down vote, well there are ID10Ts everywhere, brush it off and don't feed them.
I know the language. I've read a book. - _Madmatt