The question is if I can redirect from a MVC web App1 to a controller residing in a MVC web App2?
Using the same user credentials from MVC web App1 passed to mvc web App2
Regards, Jorge
The question is if I can redirect from a MVC web App1 to a controller residing in a MVC web App2?
Using the same user credentials from MVC web App1 passed to mvc web App2
Regards, Jorge
It is possible with simple logic you just pass data into query string.
e.g.
<a href="application-2/ControllerName/userName/password"> Move To Next App</a>
or you may use
<a href="application-2/ControllerName?username=Value&Password=Value">Move To Next App"</a>
if you don't want to show your password use some encryption to encode username password