What is Hidden Fields in Asp.Net

Answers were Sorted based on User's Feedback



What is Hidden Fields in Asp.Net..

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

What is Hidden Fields in Asp.Net..

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

What is Hidden Fields in Asp.Net..

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

What is Hidden Fields in Asp.Net..

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

Post New Answer

More ASP.NET Interview Questions

Define a static class?

0 Answers  


What is server components?

0 Answers  


What is a master page and what does it do?

0 Answers  


How to remove cache object in asp.net?

2 Answers   TVS,


How do you add a javascript function for a link button in a datagrid ?

4 Answers   Microsoft,






Explain the purpose of storyboard.targetproperty.

0 Answers  


How Session use Cookies in State Management?

0 Answers  


Is it possible to change the index of primary key on table?

0 Answers  


If there are multiple update panels on the page say upd1 and upd2. There is a button placed in upd1. How can you stop upd2 to update when button placed in upd1 is clicked?

0 Answers  


ADO.Net - how to get data from database and bind to the controls -- write this small code

3 Answers   Syntel,


What is the difference between stored procedure vs function?

0 Answers  


What is the DLL Hell Problem?

2 Answers  


Categories