简体   繁体   中英

Access hidden fields value if its Visibility set to false(using C#)

How can I access the content of hidden field, where the hiddenfiled's visibility set to Visible=false in the server side using C#. I am not in a situation to use CSS's display:none instead of Visible=false .

When you set Visisble=false on the server side it won't actually render the control in the page so there is no way to get the value on the client side.

If you really can't put the value in the page some other way you could do an AJAX request to get the value when you need it?

If Visible is false , then the control did not go down to the client, so you cannot directly access it from javascript: it simply isn't there.

Equally, since it is a HiddenField (ie <input type="hidden"...> ), there is no need to set display:none - it will never be visible, even if Visible is true (although, it will be in the source).

So: either set Visible to true , or come back to the server to get that value.

您不能-这些字段不会呈现给客户端。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM