Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?

1040


How do active server pages work?

1024


How can we create pie chart in asp.net?

1111


Where are session variables stored?

1007


What is the difference between session object and application object?

1091


What is difference between inproc and outproc?

1194


Which of the following .NET framework supports Web API?

1145


Explain what does wsdl stand for?

1230


How can we access static variable?

1164


Are cookies client side or server side?

952


How would you implement inheritance using c#?

1048


What is master page in dtp?

1047


What is gridview in asp.net?

1058


Is it possible for me to change my aspx file extension to some other name?

1072


How to do state management in ASP.NET?

1157