In asp.net 3.5 we can go one page to onther page without
using statemanagment concept?
Answer Posted / mahesh
Yes, We can use Cross-page posting, see below code.
if (Page.PreviousPage != null)
{
TextBox SourceTextBox =
(TextBox)Page.PreviousPage.FindControl("TextBox1");
if (SourceTextBox != null)
{
Label1.Text = SourceTextBox.Text;
}
}
| Is This Answer Correct ? | 23 Yes | 6 No |
Post New Answer View All Answers
Who creates jsessionid?
Out of ASP or ASP.NET which one is stateless?
Which is better asp.net or php?
Which object wraps the state or data of a user?
Is asp.net outdated?
Why is the standalone environment only useful during the development process?
In the Repeater control which way you can edit?
What is a global postback url?
1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?
what is meant by sitemapnode ?
What are Master Pages in ASP.NET? or What is a Master Page?
Name the tools or API for developing or testing web api?
How do you declare static variable?
What is the difference between page-level caching and fragment caching?
What are ASP.NET Web Forms? How is this technology different than what is available though ASP?