|
type="hidden" specifies that a Form element will not render to the browser.
Pretty useful when you want to pass around information using the HTTP POST method of a form. Since HTML was primarily designed as a display only markup, type="hidden" is the closest thing you can get to a variable that passes information in a programatic way without needing to display them on the screen as a textbox or whatever.
Hope that helps.
|