Author: sak123 | Posted on: 9/23/2008 11:34:03 AM | Views : 1165

I need to send some data to and from another website and want to know if response.redirect with the data i need to send and receive is secure.

I have worked out if I do this.

WebSiteA - Login.aspx
  Response.Redirects to website B GetDetails.aspx (Passing in the username and password from website A via querystring)

WebSiteB - GetDetails.aspx
  Gets data and response.Redirects to WebSite A RetrieveDetailsIntermediary.aspx. (Sending data via querystring)

WebSite A - RetrieveDetailsIntermediary.aspx
  Gets the data from the querystring and stores in session state.
  Redirects to WebSiteA - ShowDetails.aspx

WebSite A - Shows the details passed over from session state. (Not shown in querystring.)

Website a calls b via querystring, b calls back a via querystring intermediary page and then this page stores session and redirects again to the final show details page.
In the browser win ...

Go to the complete details ...