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


Please Help Members By Posting Answers For Below Questions

How do I know asp.net mvc version? : Asp.Net MVC

496


What is the use of ASP.NET routing?

556


What is difference in .net 1.1 and .net 2.0?

584


How is my content secured from unauthorized access?

515


What is the difference between server-side scripting and client-side scripting?

547






Explain the overview of asp.net?

558


What are the asp.net 2.0 features?

547


What is owin authentication?

516


How to integrate angular 8 with asp.net mvc 5? : Asp.Net MVC

494


How can you access the properties and controls of master pages from content pages?

513


Difference between DataGid and Girdview? Difference b/w .Net 2.0, 3.0 and 3.5 ? Diff b/w dispose & Finialize Methods?

2024


Where the viewstate is stored after the page postback?

676


Apart from IDE what are the enhancements in asp.net 2.0?

1623


What are session cookies?

540


Where web.config file is used?

565