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...


How cross page posting is done in Asp.net 2.0?

Answers were Sorted based on User's Feedback



How cross page posting is done in Asp.net 2.0?..

Answer / abhishek kumar

cros page posting is page to page data transfer machanism
like query string.

you can do it two ways :

1. using <%@ PreviousPageType VirtualPath="~/
SourcePage.aspx" %> directive :- If the target page
contains a PreviousPageType directive that points to the
source page, you can access the source page's CurrentCity
property using code such as the following.

Label1.Text = PreviousPage.CurrentCity;

2. Using PostBackUrl and PreviousPage property :-

In source page specify PostBAckUrl property to control
which you use to generate postback like,

<asp:Button
ID="Button1"
PostBackUrl="~/TargetPage.aspx"
runat="server"
Text="Submit" />

In TargetPage.aspx :-

if (Page.PreviousPage != null)
{
TextBox SourceTextBox =
(TextBox)Page.PreviousPage.FindControl("TextBox1");
if (SourceTextBox != null)
{
Label1.Text = SourceTextBox.Text;
}
}

Is This Answer Correct ?    13 Yes 1 No

How cross page posting is done in Asp.net 2.0?..

Answer / xyz

yes

Is This Answer Correct ?    0 Yes 5 No

How cross page posting is done in Asp.net 2.0?..

Answer / yogesh sharma

Like IsPostBack property there is IsCrossPostBack property
that sets to true if page is redirected from a page.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More ASP.NET Interview Questions

What is in a session cookie?

0 Answers  


What are the disadvantages of view state?

0 Answers  


Where the assembly is stored in asp.net?

0 Answers  


What is preprocessor in .net? Where it use?

0 Answers  


What is the function of the ViewState property?

0 Answers   MindCracker,


Give an example of what might be best suited to place in the application_start and session_start subroutines?

0 Answers  


In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?

0 Answers   Siebel,


How to use multiple scriptmanager controls in a web page?

0 Answers  


how to convert from sql2000 numeric to int in asp.net with sqlparameter?

1 Answers  


What is Web Application?

2 Answers   HCL,


Where do we store our connection string in asp.net application?

0 Answers  


How you will improve web application performance?

0 Answers   Wipro,


Categories