I have 3 applications under 1 solution with the following structure,
WebSoln,
- WebApp > Default.aspx
- SSOApp > SSO.aspx (contains only redirection to Default.aspx)
- TestApp > Test.aspx page
I have set the TestApp as the starting project and now I need the following flow. When I click a submit button in Test.aspx page it should go to SSOApp > SSO.aspx which in turn should redirect to Default.aspx page under WebApp.
How can I transfer between application, I am trying to use Server.Transfer, I am not sure what URL should I be using. Can you please give me the URL that would help me transfer between the applications.