I'm using standard .NET Forms Authentication for my application. When I load up my page, I get redirected to the login page and there is a Query String variable, ReturnURL, that once authenticated, will return me to the this page. I need something like this for the account creation process.
The iMIS 15 Public Login, /iMISPublic/AsiCommon/Controls/Shared/FormsAuthentication/Login.aspx , page has a link to create a new account. When I click the link, it does not retain my ReturnURL Q-string variable. Is there someway that I can have a user go through the account creation process and once completed, get redirected to their originally requested page?
Thanks,
Neil Fedin
A thought for you
I have not done this yet but I had a thought.
Why don't you send the new account user to the Public View sign up page. Once they get throught the account creation process they should be authenticated in Public Views. All you would have to do then is just redirect back to your application and let the forms authentication pick up the cookie that Public Views created in the signup process.
Another option for login integration is to use the SOA. I will be posting some sample code for that in the next couple of weeks when I find the time to do it.
Joe