TO show or NOT to show

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

How do you complish to hide fields,buttons etc on aspx page when
renders
in asp
<%if page = login%>
<td><input type="text" name= login></td>
<%else%>
<td><input type="text" name= email></td>
<%end if%>
 
Got it working, cheers
i am using control.visibility = false to control

if anyone interested.
 
Back
Top