I have a ASP.NET page with an asp:button that is not visible. I can't turn it visible with JavaScript because it is not rendered to the page.
What can I do to resolve this?
|
I have a ASP.NET page with an asp:button that is not visible. I can't turn it visible with JavaScript because it is not rendered to the page. What can I do to resolve this? |
||||
|
|
|
If you need to manipulate it on the client side, you can't use the Visible property on the server side. Instead, set its CSS display style to "none". For example:
Then, you could make it visible on the client side with:
You could make it hidden again with:
Keep in mind that there may be issues with the ClientID being more complex than "Label1" in practice. You'll need to use the ClientID with getElementById, not the server side ID, if they differ. |
||||
|
|
|
Try this.
Don't use server-side code to do this because that would require a postback. Instead of using Visibility="false", you can just set a CSS property that hides the button. Then, in javascript, switch that property back whenever you want to show the button again. The ClientID is used because it can be different from the server ID if the button is inside a Naming Container control. These include Panels of various sorts. |
||||
|
|
|
Continuing with what Dave Ward said:
Page/Control design
Code behind Somewhere in the load section:
Javascript file
Of course, if you don't want to toggle but just to show the button/label then adjust the javascript method accordingly. The important point here is that you need to send the information about the |
|||
|
|
|
You need to be wary of XSS when doing stuff like this:
The chances are that no-one will be able to tamper with the ClientID of Label1 in this instance, but just to be on the safe side you might want pass it's value through one of the AntiXss library's methods:
|
|||
|
|
|
This is the easiest way I found:
I have the opposite in the Else, so it handles displaying them as well. This can go in the Page's Load or in a method to refresh the controls on the page. |
|||
|
|
|
If you wait until the page is loaded, and then set the button's display to none, that should work. Then you can make it visible at a later point. |
|||
|
|
|
Make sure the Visible property is set to true or the control won't render to the page. Then you can use script to manipulate it. |
|||
|
|