view state data is stored in which format?

Answers were Sorted based on User's Feedback



view state data is stored in which format?..

Answer / venu gopal ch

ViewState will be rendered as HTML Hidden field with
encryption of data inside it

Is This Answer Correct ?    34 Yes 0 No

view state data is stored in which format?..

Answer / aravind

It is stored in client side.
It is stored in an encrypted format.

Is This Answer Correct ?    32 Yes 6 No

view state data is stored in which format?..

Answer / charan

ViewState Data is stroed in Base64 encoded format.

Is This Answer Correct ?    21 Yes 1 No

view state data is stored in which format?..

Answer / raj

viewstate is the client side state management.every server
control has a view state .we can assign a property named
Enableviewstate to every server control and setting the
property to true,the viewstate will be enabled and hence
the values of the control will be stored as encrypted
format whenever the page is postback from the server again
and again.

Is This Answer Correct ?    22 Yes 4 No

view state data is stored in which format?..

Answer / nalin

View state is stored in the client in the form of a hidden
control called “__VIEWSTATE”. Here by client I mean the
rendered aspx pages in the browser. If view state property
is set to true then ASP.NET automatically adds a hidden
field/control by the name “__VIEWSTATE” and stores the
information related to the state of the page in an encrypted
format.

Is This Answer Correct ?    11 Yes 0 No

view state data is stored in which format?..

Answer / sachin garg

View state is stored in the client in the form of a hidden
control called “__VIEWSTATE”. Here by client I mean the
rendered aspx pages in the browser. If view state property
is set to true then ASP.NET automatically adds a hidden
field/control by the name “__VIEWSTATE” and stores the
information related to the state of the page in an encrypted
format.

Is This Answer Correct ?    4 Yes 0 No

view state data is stored in which format?..

Answer / radhe shyam

view state is a client-side state management techniques,And
it is basically used to maintain value of all the controls
of a page.it store date in encrypted mode in client
browser.whenever you post view state data one page to
another page then it automically expire.

Is This Answer Correct ?    3 Yes 0 No

view state data is stored in which format?..

Answer / g.jaipalreddy

variables are stored in the browser.
viewstate can hold only string data or serialisable objects

Is This Answer Correct ?    10 Yes 9 No

view state data is stored in which format?..

Answer / prabhakar pandey

View state is stored in the client in the form of a hidden
control called “__VIEWSTATE”. Here by client I mean the
rendered aspx pages in the browser. If view state property
is set to true then ASP.NET automatically adds a hidden
field/control by the name “__VIEWSTATE” and stores the
information related to the state of the page in an encrypted
format.it is called before the load event and saved between prerender and render event.

Is This Answer Correct ?    1 Yes 0 No

view state data is stored in which format?..

Answer / kiran

in HTML hidden Fields

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What you mean by partial Class in asp.net 2.0?

3 Answers   TCS,


what is postback implementation?when pre-render event n init event is fired?

2 Answers   Ness Technologies,


Suppose, I have 3 pages, Page1.aspx, Page2.aspx, Page3.aspx. All pages are in diff. server. When user req. for a page, Page1.aspx opens Ist & a session established. If user req. for IIn page, second session established. Similarly, 3rd session established if user req. 3rd page. In this scenario, tot. 03 sessions are established. How we can minimize it so that it will work with only one session?

3 Answers   TCS, Wipro,


You create an assembly to access data in a relational database. This assembly will be used by several ASP.NET applications on your Web server. You need to ensure that all your applications can access the assembly. Which two actions should you take (Each Answer: presents part of the solution.)? (Choose two) A . Run the Assembly Registration tool (Regasm.exe). B . Run the String Name tool (Sn.exe). C . Run the Installer tool (Intallutil.exe). D . Run the Global Assembly Cache tool (Gacutil.exe).

6 Answers   CPCL, Syntax Softtech,


What is asp.net master page?

0 Answers  






What is the difference between Proxy and Contract?

1 Answers  


Can I read the hard disk serial # of the client computer using asp.net?

0 Answers  


What is DataGrid wheater its a Server Control or something else ?

0 Answers   NA,


To add a hyperlink column to the DataGrid which tag is used ?

0 Answers   Siebel,


What is the basic difference between asp and asp.net?

0 Answers  


What are triggers of an updatepanel?

0 Answers  


difference between Trace and Debug ?

2 Answers   Accenture, HCL, Patni,


Categories