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
What is the difference between a default skin and a named skin?
What is sql data source control in asp.net?
What is the asp.net mvc folder conventions? : asp.net mvc
What is the difference between a multi-layer and multi-tier applications?
Briefly describe the role of global.asax?
Which validator control you use if you need to make sure the values in two different controls matched?
Is redux flux?
What is difference between Lambda Expression and LINQ in ASP.NET?
Define session in asp.net.
How does session work?
Why viewstate is used in asp.net?
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?
What is cookies in asp net?
What is the main function of url routing system in asp.net mvc? : asp.net mvc
How should I destroy my objects in asp.net?