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 |
What is asp.net? How is it different from asp?
Explain how can we inherit a static member?
Differences between VB.Net and C#, related to OOPS concepts
What is the name of the base class that all web forms will be inherited?
What is a global postback url?
How do you bind array to gridview? Will it works?
What is cross page posting in asp net?
how to add cliet side event to server side? and how to register client script to sever side? wt difference these two
what are httphandlers and httpmodules.and their differences.
What is the maximum timeout we can set for Cookies?
When Garbage Collector will run and how its identifing whether the Object is used or Not.?
What is the difference between web config and machine config files?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)