Answer Posted / 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 |
Post New Answer View All Answers
Is asp.net different from asp? If yes, explain how?
What is a query string in a url?
What is session id in web application?
Which is better asp.net or php?
List some of the important session state modes of asp.net.
Which Is Faster MVC or ASP.net ?
How do session tokens work?
Define web services in asp.net.
What are cookies in asp.net?
What is difference between URL and URI?
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?
How does asp.net work?
In ViewState How much lifespan items stored?
What is the typical session identifier?
If 200 is for all successful operation then why do we have 201 response codes?