Tagged Questions
The cross-page-posting tag has no wiki summary.
3
votes
3answers
210 views
ASP.NET webforms listbox - cross-page posting
I'm new to ASP.NET, and I'm having a problem getting a listbox to return the proper data when posting to another page. I have gotten dropdownlists and radio buttons to work. For instance, for ...
3
votes
2answers
508 views
What is cross-page posting in ASP.NET?
I have a few questions about cross-page posting in ASP.NET:
What is cross-page posting in ASP.NET?
When should I consider using it in my web application?
What are pros and cons of cross-page ...
2
votes
2answers
648 views
Is it possible to have multiple target pages with cross page posting?
I have a web page that uses cross page posting to post to a different target page.
A new requirement has arisen that means that there could be 4 different target pages to post too depending on what ...
1
vote
1answer
288 views
Cross-page postbacks and back again retaining data from source page
Is it possible to use cross-page postbacks (or a similar method, perhaps Server.Transfer) to post form data (say, Data-set A) to a page, which then allows the user to add some additional information ...
0
votes
1answer
39 views
One aspx page, two cross-page postbacks
Scenario
I have a site where users can register for a course, I'm developing a new feature allowing existing students to login with an email & password and register using their previous details.
...
0
votes
0answers
160 views
Page.PreviousPage is null in Session_Start method in cross-page posting
I am posting from page A to page B using PostBackUrl (cross-page posting). Although the application is the same, the base domain is different, causing a new session to be created. The Session_Start ...
0
votes
1answer
361 views
Retaining PreviousPage information after postback
I'm using the asp.net PreviousPage functionality and cross-page postback. The problem i'm running into is that if I have any postbacks on my page, the PreviousPage information seems to be lost. I ...
0
votes
0answers
169 views
CrossPage PostBack in series of web pages
I had a requirement to pass data between pages in my application.
I have a Page A where user will input some data and on submit User will be redirected to Page B where again user will enter some more ...
0
votes
3answers
427 views
ASP.NET How to raise load event on previous page with cross page postbacks
I'm working on a wizard-like set of page, and I'm relying on cross page postbacks to navigate between them.
I need to be able to trigger the Load event on the previous page in order to save the form ...
0
votes
3answers
336 views
ASP.NET Passing Values in Separate Virtual Path
I know how to pass values between asp.net pages if its on the same virtual but what about of i have sites on different virtual? would it be possible?
say i have this site1
...
0
votes
1answer
107 views
sitemappath cross page postback
my website uses cross page postback from page to page to access information from the previous page.
i am wondering if it is possible to do cross page postback when clicking on the links in a ...
0
votes
4answers
609 views
ASP.Net Cross Page Posting
Currently I have two pages:
The first page contains an input form, and the 2nd page generates an excel document. The input form's button posts to this 2nd page.
What I'd like to do is add a second ...