Hi,
I have an asp.net page with an asp:button that is not visible. I cant turn it visible with javascript because its not rendered to the page. What are my alternatives to solve this?
Thanks in advance, Artur
|
|
Hi, I have an asp.net page with an asp:button that is not visible. I cant turn it visible with javascript because its not rendered to the page. What are my alternatives to solve this? Thanks in advance, Artur
|
||
|
|
|
|
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. |
|||
|
|
|
|
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:
|
||
|
|
|
|
Thanks for the answers! Really fast too. Im going with Dave's one. By using the ClientID what you mean is to put:
right? (This is a follow up question, should I send it as answer or put a new question? Bit confusing) Thanks, Artur |
||
|
|
|
|
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 |
||
|
|
|
|
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 Namaing Container control. These include Panels of various sorts. |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|