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 |
Explain the concept of View Model in MVC?
What is the Global ASA(X) File?
What's a bubbled event?
What do you mean by caching in asp.net?
Name the tools or API for developing or testing web api?
Where is http session stored?
What is custom tag in web.config ?
2 Answers Accenture, BirlaSoft,
What is the question mark in a url?
what are the main advantage in .net?
What is .NetFramework?
What is the difference between session and viewstate in asp.net?
Which control would you use if you needed to make sure the values in two different controls matched?