can we transfer data from one page to another page using
viewstate if so how?if not y?
Answer / 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 |
What is server side in asp.net?
What is the use of response redirect in asp.net?
How we implement the multiple paypal value with gridview in my website and how we make a payment through Credit Card.
how to get the vb6.0 COM Component in to the .Net application?
Webconfig file is cofiguration of server or browser?
How do you access individual items of an Master Page
Explain about the Class view window?
when user is logged on the information is saved in a cookie, what is the name of that cookie?
How to authenticate users using Web.Config ?
Do you know about caching with the datasource controls?
how to write code for role based security
About writting a query and SP which is better ?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)