Skip to main content

All Questions

Tagged with
1 vote
1 answer
115 views

Making Elements not possible to manipulate Visibility

I have a ASP-WebForm-Application with several User-Rights. In CodeBehind I am hiding some Elements if the specific Rights aren't given. But with F12 the User could manipulate the Code the get some ...
comidos's user avatar
  • 123
0 votes
1 answer
1k views

Setting display none of an asp panel in client side is re-showing it on any linkButtonclick

I am facing a weird issue with visibility of an asp-panel. I have a small form which contains a button inside a panel that makes a div visible. <div id="myModal" class="modal" style="display: none"...
Mlle 116's user avatar
  • 1,179
0 votes
2 answers
329 views

Hidden control seen as visible by jQuery

I have a table as such: <table class="RepaymentTable"> <thead> <tr> <td style="width: 200px;"> </td> <td> ...
anothershrubery's user avatar
0 votes
1 answer
64 views

Does "display:none" render the control ineffective?

I am using a CMS for my site and im trying to alter the Skin of one module in the CMS. I do not have the source code of the module. Only the skin where i can only modify the way the components are ...
MarsOne's user avatar
  • 2,185
6 votes
3 answers
38k views

ASP.NET control with CSS visibility:hidden, not being shown on Control.Visible = true

I have a few labels on my page with a class of 'error', the rule for .error is: .error { color:Red; visibility:hidden } The markup for the labels is: <asp:Label ID="lblError" runat="...
Fermin's user avatar
  • 35.8k