What is Hidden Fields in Asp.Net
Answers were Sorted based on User's Feedback
Answer / m.shanmuga sundaram,rjnsoftwar
Hidden fields in Asp.Net are used to exchange data between
browsers and web servers.
Page.RegisterHiddenField Method
Is This Answer Correct ? | 12 Yes | 2 No |
Answer / chinmayee mishra
Hidden fields technique is widely used in ASP.NET
programing. Hidden fields are html input control with
hidden type that store hidden data in the html. An example
for a hidden field can look like this:
view sourceprint?1.<input type="hidden"
name="__EVENTTARGET" id="__EVENTTARGET" value="" />In the
example above, I chose to show the event target hidden
field in order to indicate that even in postback mechanism
hidden fields are being used. The data stored in a hidden
field is available when the form is processed on the server
or when we use javascript.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sagar jena
All the viewstate information stores in hidden field and hidden field is a textbox without visibility.,which is used for data-communication between browser and web-server towards different postback communication for a particular page.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / neha
<input type=hidden value=India>
this is the input tag of html ,with the help of which we can
store value within the control,to see this code we have to do
view-page source
Is This Answer Correct ? | 0 Yes | 0 No |
How is session id generated?
What are the disadvantages of using session?
Explain what is postback in asp. Net?
How is a session stored and maintained in asp.net?
Define repository pattern in asp.net mvc? : asp.net mvc
How can you ensure a permanent cookie?
Have u used webcontrols?Tell me something about these?
what is the difference b/w Asp.net server controls and html server controls in .net?
2 Answers iGate, Profiniti Systems,
what is webservices. howit is use in our project .
What is the difference between ldap and active directory?
How many types of validation controls are provided by ASP.NET?
What is enableviewstate in asp net?