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
Can you set the session out time manually?
Describe how ASP.NET maintains process isolation for each Web application?
What are the new login controls in asp.net 2.0?
Differentiate between early binding and late binding.
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
Write a code for sending an email from asp.net application.
What is http post action?
Briefly describe the role of global.asax?
What is latest version of asp.net mvc? : Asp.Net MVC
When we use cookie less session? Explain its working?
What is the web.config file in asp?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
Explain MVC model binders?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
What are the main requirements for caching?