can we transfer data from one page to another page using
viewstate if so how?if not y?
Answer Posted / bikramjit singh
No we cannot tranfer data from pne page to another using
viewstate. Viewsatate is a atate management technique which
allows to preserve controls property values and class level
variables values for a specific page between postbacks.
We can tranfer data from one page to another using session
object or query string.Session object is a collection
object which can store large amount of data whereas query
string is used to transfer small amount of information from
one page to another.
Bikramjit Singh.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What’s the difference between response .redirect and server.transfer?
What is use of Master Page in ASP.NET web pages?
What is viewstate in asp net with example?
Explain the difference between web user control and web custom control?
Can you explain composite pattern?
How would you get asp.net running in apache web servers? Explain it's limitations.
Explain the difference between value type and reference type?
What is the concept of postback in asp.net?
How can you register a custom server control to a web page?
What are the advantages of asp.net mvc framework? : asp.net mvc
What language does asp.net use?
What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?
What is the displayafter property in updateprogress control?
Explain automatic memory management in .net.
What is inheritance and an how it be used, example with an example?