| Author: Meena Ganesan 02 Apr 2008 | Member Level: Gold Points : 0 |
What is the big deal in this?
|
| Author: Balamurali Balaji 25 Apr 2008 | Member Level: Diamond Points : 0 |
Many such codes have been placed in this section, nowadays.
|
| Author: Raghuveer Pulla 28 Apr 2008 | Member Level: Silver Points : 2 |
GO to properties of textbox and provide visible =false than textbox is not appeared in the output
|
| Author: andy robarts 28 Apr 2008 | Member Level: Gold Points : 2 |
Textbox1.visible= false
|
| Author: Jeyabalan 30 Apr 2008 | Member Level: Bronze Points : 2 |
Use this coding
|
| Author: Samarth Abrol 01 May 2008 | Member Level: Bronze Points : 2 |
You can do either of the option of
using
TextBox1.Visible = false;
or
in the properties window/press F4 key by selecting the control and then set option Visible = false in the properties window.
Doing in .cs page will give you the dynamic control for hiding/displaying while in other case it will be the same unless changed manually.
|
| Author: sanmu 01 May 2008 | Member Level: Bronze Points : 2 |
To make a text box invisible in ASP.NET2.0 : Style=" visibility :hidden;left: 0px; position: absolute;top: 0px"> Or
|
| Author: Sridevi Nagalingam 02 May 2008 | Member Level: Silver Points : 2 |
TextBox1.Visible=false;
|
| Author: Nithya 02 May 2008 | Member Level: Bronze Points : 2 |
controlName.visible=false
|