I have two applications and want to pass data within them. Both applications are on different domains and different technology.
Application-1: www.mydomain.com
Application-2: www1.mydomain.com (Notice the "www1")
Application-1 is in Classic ASP using hidden variables and forms. Application-2 is a SPA in AngularJS.
Requirement: Click on a link from classic ASP which navigates you to AngularJS. Clicking "Cancel" on AngularJS page should redirect you back to classic ASP page.
Problem: I can pass Classic ASP page URL in querystring but this page has 50 hidden form variables which I want to pass as well to AngularJS so that I can redirect back from AngularJS page with those form variables.