cross-page-posting

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 data was entered on the client. Is it possible to somehow change the cross page posting target dynamically on the client? From looking at ...

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 button which also posts to the 2nd page; however, I'll need requests created from this new button to act differently, which brings me to my...

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 sitemappath as it seems it is simply doing a response.redirect which is causing the PreviousPage to be null. ...

Cross Page Postback in moss

Can I do a cross page postback in an .aspx page hosted in moss? I have set the postbackurl property of a button but when it posts to my page I get the following message from moss: This Page has been modified since you opened it. You must open the page again. ...

ASP.NET Passing Values in Separate Virtual Path

Hi, 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 localhost/search/search.aspx then i have this site2 which processes the result from site1 localhost/result/result.aspx --> notice this is on different virtua...

What is the best way to show a preview page? Sessions? Cross-Page Postings? Ideas?

I'm trying to avoid using a session varible here. Bascially, the user can add a lot of text to a text box. It can be formatted with HTML. When they click a preview button they are redirected to a 2nd page which renders the HTML. It gets the data using PreviousPage cross-page posting. But when they go back to the original page to continue...

ASP.NET How to raise load event on previous page with cross page postbacks

Hi guys, 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 data for the page. I've been told that for situations of this sort all I had to do is access the PreviousPage property in the de...

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

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 data and on submitting user will be show a confirmation in Page C after doing some calculations and data saving. Following is the idea I ...

Cross-page posting and gibberish in virtual path

I'm working with some legacy ASP.NET code. The site uses a master page to include a custom login control on every page. The login is not for the site itself, rather it acts as a gateway to set of sites, depending on user identity. The login control does a cross page posting to a different web app for authentication and redirection. So ...

How to check in javascript, if the form is posted from same server

What are the ways to check in javascript, if the form is posted from same server or some other server? ...

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 don't want to put it in ViewState because that will be quite large. I've thought about Session, but I don't want the data to persist after i...

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 (say, Data-set B) and then postback to the original page the complete set of data (A+B) which then flows through the normal event execution ...