can we transfer data from one page to another page using
viewstate if so how?if not y?

Answer Posted / alb.shah

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 ?    10 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is cas?

801


Explain swagger components.

746


What is an axd file?

783


How asynchronous call can be implemented using delegates?

757


Are there resources online with tips on asp to asp.net conversions?

748


Explain how cookies work.

788


1.can we add connection string in global.asax?????????? 2.what are the default files included when we create new web application????

19663


What are the advantages and limitations of query string?

790


Explain how do you deploy your asp.net application?

670


What is OSI layer? Explain different layers.

789


how to include timer or counting time to display next page in asp.net

1811


Where session variables are stored?

727


Difference between web user control and web custom control?

668


Explain the path instructions in xaml?

751


In Data grid the question is below quantity price total these are 3 fields available in data grid if you enter quantity the total has to update automatically.Price field is already filled completely

1762