Harry Wheat
|
| Posted: 01/19/2003, 5:41 AM |
|
I have a registration form and would like to hide certain Labels and
Textboxes based on certain criteria. I cannot get the .Visible property to
work with that. Is there another way to do it. I am using CCS 2.0 Beta 1 and
ASP 3.0 With Templates.
Thanks
|
|
|
 |
Frank Rocco
|
| Posted: 01/19/2003, 7:57 AM |
|
Hi,
I would use a label with the html attr. set.
if condition = true then
label1 = "<input type='text' name='whatever>
else
label1 = ""
end if
HTH
Frank
"Harry Wheat" <sales@ifixpcs.com> wrote in message
news:b0e9uv$csa$1@news.codecharge.com...
> I have a registration form and would like to hide certain Labels and
> Textboxes based on certain criteria. I cannot get the .Visible property to
> work with that. Is there another way to do it. I am using CCS 2.0 Beta 1
and
> ASP 3.0 With Templates.
> Thanks
>
>
|
|
|
 |
|