Link to home
Start Free TrialLog in
Avatar of Peter Chan
Peter ChanFlag for Hong Kong

asked on

Way to hide it

Hi,
I want to change visibility of relevant button (like to hide it), per given relevant values on the page. How?

<input type="button" id="butt_p4" onclick="openPopup4();" style="height:23px; width:97px; visibility:visible" value="删除照片" runat="server" />

Open in new window

Avatar of HainKurt
HainKurt
Flag of Canada image

try

visibility:visible

Open in new window


>>>

display:none

Open in new window

Avatar of Peter Chan

ASKER

Yes, how to adjust it in the code behind?
Avatar of Ryan Chong
I want to change visibility of relevant button (like to hide it), per given relevant values on the page. How?
since the button is runat=server

you can consider to hide it by either front end via javascript OR back end via your .NET programming.
it's up to your workflow and method of handling it.
you can consider to hide it by either front end via javascript OR back end via your .NET programming.

Can I have more details to this?
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial