Search:
Namespaces
Discussions
.NET v1.1
Feedback
Changing Visible Status Dynamically with a boolean value
Messages
Related Types
This message was discovered on
ASPFriends.com 'aspngbeta' list
.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Moore, Matthew
Is it possible to have a boolean value in the visible status of let's say a text box or a label? I am trying something like this :
<asp:label id=TestNumberLabel runat=Server visible="myVisibleStatus">Test Number</asp:label>
Anyways, I'm getting the following :
Parser Error Message: 'myVisibleStatus' is not a valid value for Boolean.
Source Error:
Line 85: <asp:label id=TestNumberLabel runat=Server visible = myVisibleStatus>Test Number</asp:label>
And if this should work, where would I construct myVisibleStatus. I put it in the WebForm Class.
Matt
Reply to this message...
Dan Hurwitz (VIP)
I don't think that will work. You should try something like
TestNumberLabel.Visible=true;
or
boolean myVisibleStatus=false;
TestNumberLabel.Visible=myVisibleStatus;
--d
-----Original Message-----
From: Moore, Matthew [mailto:
Click here to reveal e-mail address
]
Sent: Thursday, May 10, 2001 11:10 AM
To: aspngbeta
Subject: [aspngbeta] Changing Visible Status Dynamically with a boolean
value
Is it possible to have a boolean value in the visible status of let's say a
text box or a label? I am trying something like this :
<asp:label id=TestNumberLabel runat=Server visible="myVisibleStatus">Test
Number</asp:label>
Anyways, I'm getting the following :
Parser Error Message: 'myVisibleStatus' is not a valid value for Boolean.
Source Error:
Line 85: <asp:label id=TestNumberLabel runat=Server visible =
myVisibleStatus>Test Number</asp:label>
And if this should work, where would I construct myVisibleStatus. I put it
in the WebForm Class.
Matt
| [aspngbeta] member
Click here to reveal e-mail address
= YOUR ID
|
http://www.asplists.com/asplists/aspngbeta.asp
= JOIN/QUIT
Reply to this message...
Das (VIP)
you can do it as follows.
as per your code, for your following code
[Original message clipped]
you can access this control from any of your methods
such as page_load as follows
TestNumberLabel.visible=False
Thanks,
DAS.
--- "Moore, Matthew" <
Click here to reveal e-mail address
> wrote:
[Original message clipped]
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
Reply to this message...
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com