can we transfer data from one page to another page using
viewstate if so how?if not y?
Answer Posted / k
no we can not do it like how we use session.
u store ur value in any contol find that control value from
current page.
TextBox txBox = (TextBox)PreviousPage.FindControl
("txtPreviousTest");
string urTextBox=txBox.Text;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How many languages are supported by .NET at present time?
What is the use of service provider?
What is the purpose of using MVC programming pattern in ASP.NET?
Explain the use of dataadapter.
Explain what is clr?
How do I send an email message from my ASP.NET page?
List the types of authentication supported by asp.net?
What are server side controls?
How ASP.NET page works?
How do session tokens work?
What are the ways of preserving data on a Web Form in ASP.NET?
How long does an http session last?
What is server side routing?
How information about the user's locale can be accessed?
Explain login control and form authentication.