view state data is stored in which format?
Answer Posted / 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 |
Post New Answer View All Answers
How many types of cache are there?
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
Explain what is the procedure to create the environment for asp.net? : asp.net mvc
Give some salient points of difference between request processor and request dispatcher.
What is HTTPModule and HTTPcontext? What is the use of each?
What is cookies cache and session?
What is comparevalidator?
What is the use of express session?
Where code pages are used?
What is user control in asp.net?
What is validation in asp.net?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
Why is global asax is used?
What are custom controls?