Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

change Visibility of a control in ASP.NET code behind (c#)

How do you set the visibility of a (fileupload) control from ASP.net code (I need to hide a fileupload control in a webuser control from server site, otherwise hasFIle is always false). Also setting the "Visible" property to false does not work (as is confuses the AJAX panel so the fileupload forgets that it has a file).

theFileUpload.Visible = false => does not work so I want to try to set the CSS style visibility to hidden or display to none.

The main problem is I want to do it from the server side (I know how I could do it on client).

Is there a safe way to overwrite

theFileUpload.Attributes["styles"]

in case I modify other CSS styles in there, also throwing a whole CSS class at it (by moidifying the CSSClass property) seems like overkill.

thanks in advance Axel

like image 427
Axel Grude Avatar asked Dec 17 '25 18:12

Axel Grude


1 Answers

By using theFileUpload.Visible = false; you just tells to asp.net to not render theFileUpload on the page. You may use

theFileUpload.Attributes.CssStyle[HtmlTextWriterStyle.Visibility] = "hidden";

That allows you to set only a specific css property.

like image 136
tanathos Avatar answered Dec 20 '25 06:12

tanathos



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!