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 are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?
How do active server pages work?
How can we create pie chart in asp.net?
Where are session variables stored?
What is the difference between session object and application object?
What is difference between inproc and outproc?
Which of the following .NET framework supports Web API?
Explain what does wsdl stand for?
How can we access static variable?
Are cookies client side or server side?
How would you implement inheritance using c#?
What is master page in dtp?
What is gridview in asp.net?
Is it possible for me to change my aspx file extension to some other name?
How to do state management in ASP.NET?