In asp.net 3.5 we can go one page to onther page without
using statemanagment concept?



In asp.net 3.5 we can go one page to onther page without using statemanagment concept?..

Answer / 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

More ASP.NET Interview Questions

How can I have a particular web page in an asp.net application which displays its own error page?

0 Answers  


How does session state work in asp.net?

0 Answers  


What is gacutil.exe? Where do we store assemblies, Should sn.exe be used before gacutil.exe?

2 Answers   Accenture, Aptech,


What is session and application variable in asp net?

0 Answers  


How can we create custom controls in asp net?

0 Answers  






Where are session variables stored?

0 Answers  


what is the use of untyped data set ?

5 Answers   TCS, Wipro,


what is synchronization and asynchronization. what are the difference between two?

1 Answers   TCS,


Webconfig file is cofiguration of server or browser?

10 Answers   Wipro,


.Net Doesn't offer Deterministic Distruction ? a) True b) False

4 Answers   CTS,


what is the exact purpose of http handlers and interfaces?

1 Answers  


Which browsers support the xmlhttprequest object?

0 Answers  


Categories