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
How can we implement a identity (sql server) call in an asp.net page?
How does a content page differ from a master page?
Is it true that a Web service must be written in .NET or not?
What is mvc in angular?
Explain form level validation and field level validation?
Explain Life cycle of ASP.NET page when a request is made.
When you use Ajax controls in the ASP.NET application?
What does asax stand for?
How many web config files can be created for an application?
What are the difference between function and stored procedure in .net programming language?
Difference between .NET and previous version?
What is the use of worker process in asp.net?
How to make paging concepts in datagrid in ASP.NET?
Explain different authentication modes in asp.net?
What is the difference between a candidate key and primary key?