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
What do you mean by serialize?
What is a session government?
What is semantic gap?
What is difference between cache and session?
What are the different types of sessions in asp.net?
What is the difference between CC and BCC?
Explain about ASP.NET?
Which two new properties are added in asp.net 4.0 page class?
How does asp.net page work?
Which is better viewstate or session?
What is the maximum timeout we can set for Cookies?
How to register exception filter globally?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC
Explain the use of view state?
How do you sign out from forms authentication?