Amanda 123


Say I write a web application that requires LiveID signin. This web application should be hosted within another web application as IFRAME. Something along the following lines:

<body>
<iframe src="http://www.mydomain.com/liveidauth.aspx" ></iframe>
</body>


Is this possible

It appears that this is not possible due to the way redirects work. After signing in, I am not back within the IFRAME, but in a new window.

Thank you!



Re: LiveID control hosted within IFRAME

Jorgen Thelin [MSFT]


This is typically what the context parameter is used for with WebAuth

http://msdn2.microsoft.com/en-us/library/bb676638.aspx

Your return page does need to decode and handle the final redirect based in the context param though.