Types of state management techniques ?

Answer Posted / hameed

client side
view state,hidden fields, cookies, query strings

server side
Application state, session state, Database.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you open a page in a new window?

556


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 = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1736


How response object is related to asp's response object?

527


How can you implement the postback property of an asp.net control?

536


What is razor? : asp.net mvc

562






What are the differences between clr & cts?

543


What is the use of asp.net web api?

586


What are the session variables?

518


Explain about the .NET framework?

577


What are Master Pages in ASP.NET?

581


Explain the page lifecycle of an asp.net mvc? : asp.net mvc

441


How does asp page work?

553


What are the advantages of the code-behind feature?

546


Write a code for sending an email from asp.net application.

540


What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?

586