Answer Posted / 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 |
Post New Answer View All Answers
what is a .xap file? Explain with an example.
How to Insert/Add in ASPXgridview
How to integrate angular 8 with asp.net mvc 5? : Asp.Net MVC
i have 3+ exp in .net? i am going interview now but they asked me do you know any TOOL? which tool will i study please refer me?
How can you enable impersonation in the web.config file?
What is asp.net futures?
What are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?
How to create multi language website in asp.net mvc? : Asp.Net MVC
How do I send an email message from my ASP.NET page?
How to display validation messages in one control?
What are the different types of Caching techniques in ASP.NET?
How would you enable impersonation in the web.config file?
Explain the different types of directives in .net?
What is http request and response?
Explain swagger components.