can we transfer data from one page to another page using
viewstate if so how?if not y?
Answer Posted / shamme
viewstate values stored in present page...once use
server.transfer the view state values was out....so not
possible to transfer data from one page to another page...
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Explain the main differences between asp and asp.net?
What is the use of web.config and machine.config files?
What are Authentication and Authorization?
How do you store a value in viewstate and retrieve them?
What ports must be open for DCOM over a firewall? What is the purpose of Port 135?
Which of the following .NET framework supports Web API?
What is the difference between a cookie and a pixel?
Who is using asp.net?
Hi All, Im an MCA holder with 3+ years of experience in asp.net. Now i want to move to some good government job. I have no idea about different categories of exams held & which one can be applicable for my education background. I have done B.A with MCA. Please help me out with your valuable suggestions. I would be very grateful. Thanks Anuj
What does mean by a neutral culture?
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 = "
How can we apply themes to an asp.net application?
Is asp.net and .net are same or different?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What are the differences between application object and session object?