hidden field

  • Thread starter Thread starter Joël
  • Start date Start date
J

Joël

hi!
Is it possible to have a textbox web server control as hidden ? and how ?
When I use the visible property the textbox isn't rendered.
 
You can drag a hidden control onto your webform from the HTML section of the
VS.NET toolbox. Here is the equivalent HTML:

<INPUT type="hidden" id="Hidden1" name="Hidden1" runat="server">
 
Back
Top