State management in asp.net ?

Answer Posted / manish singh(amalga fusion)

you can maintain client side state managment in following
way
1 view state
2 query string
3 hidden field
4 cookies
5 Hidden frames

you can maintain server side managment in following way
1 Application
2 Session
3 i think using cache object also but not sure.

Is This Answer Correct ?    12 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is session object? Describe in detail.

659


What is full trust in asp.net?

638


Explain the difference between sql invalidation and sql notification.

637


What are cao and sao.

638


Explain swagger components.

656






Which method is used to enforce garbage collection in .net?

512


How do I open an ashx file?

615


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

1818


What is ashx file in asp.net?

631


What is the good practice to implement validations in aspx page?

725


In early binding will the method invoked on com component will verify it?s existance in the system or not ?

2258


How does asp.net work?

640


What is session in asp.net?

610


How would you create a permanent cookie?

666


What does asp.net stand for?

636