can we transfer data from one page to another page using
viewstate if so how?if not y?
Answer Posted / vijaykumar
Yes.
View state is page specific; it contains information about
controls embedded on theparticular page. ASP.NET 2.0
resolves this by embedding a hidden input field
name,__POSTBACK . This field is embedded only when there is
an IButtonControl on thepage and its PostBackUrl property is
set to a non-null value. This field contains the viewstate
information of the poster page. To access the view state of
the poster page, you canuse the new PreviousPage property of
the page
Page poster = this.PreviousPage;
Then you can find any control from the previous page and
read its state
Label posterLabel =(Label)poster.findControl("myLabel");
string lbl = posterLabel.Text;
This cross-page post back feature also solves the problem of
posting a Form to multiplepages, because each control, in
theory, can point to different post back URL.
| Is This Answer Correct ? | 41 Yes | 9 No |
Post New Answer View All Answers
What is cross page posting in asp net?
How to implement globalization and localization in the use interface in .net.
How many types of validators are there in asp net?
What are the modes of updation in an updatepanel?
What is postback request?
How can I configure asp.net applications that are running on a remote machine?
What is http request and response?
What is the difference between system.stringbuilder and system.string
What are the components of ado.net?
What is a server farm in iis?
What is a postback in asp net?
What are the asp.net list controls and difference between them?
What is an asp.net web form?
Describe the diffeerence between inline and code behind?
How can we create custom controls in asp net?