What is State Management in .Net and how many ways are there
to maintain a state in .Net?
Answer Posted / shobha
State management in ASP.Net
we can maintain state in ASP.Net in two ways.
1.Client Side Management.
2.Server Side Management.
1.Client Side Management:
a) Cookies
b) Hidden Variable
c) View State
d) Query String
2.Server Side Management
a) Sessions
b) Application State
c) Database
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
How many types of Cookies are available in ASP.NET?
How to change Master page in ASP.Net using code?
What is special types forms
Can we add code files of different languages in app_code folder?
Diff between web user control and web custom control?
What is validation in asp.net?
Explain Authentication mechanism in dotnet
What is the parent class of all web server control?
Define common type system?
What are server activated objects?
How do I open an ashx file?
Explain about ASP.NET?
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 repository pattern in asp.net mvc? : asp.net mvc
What is rich control in asp.net?