What is an hidden field? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is an hidden field?

Hidden field in asp.net c#

22nd Feb 2017, 2:15 AM
ANUMAN DWIVEDI
ANUMAN DWIVEDI - avatar
1 Answer
+ 5
HiddenField, as name implies, is hidden. This is non visual control in ASP.NET where you can save the value. This is one of the types of client-side state management tools. It stores the value between the roundtrip. HiddenFields are not encrypted or protected and can be changed by any one. However, from a security point of view, this is not suggested.
26th Mar 2017, 3:10 PM
RLi17