How to disable status bar messages for Hyperlink Controls
-
Hi, How to disable status bar messages for Hyperlink Controls plz tell me if any body knows thanks aparna
You could try resetting the status bar with an empty string or some other display text when the cursor is over the link, I don't think empty strings will work and you need to show some other text. eg. a...
-
Hi, How to disable status bar messages for Hyperlink Controls plz tell me if any body knows thanks aparna
Hi there, If you mean to set the status text of the current window to something, then you simply create an event handler for the
onmouseover
of the control. The sample code look like:<asp:HyperLink id="HyperLink1" runat="server" onmouseout="self.status=''; return true;"
onmouseover="self.status='something here or blank'; return true;" NavigateUrl="...">HyperLink</asp:HyperLink>In FireFox, the script is not able to set the status text by default, the user at the client side needs to enable the setting in the Advanced options of the Web features.