Developer forum
E-mail notifications
Redirect on session timeout
Posted on 21/03/2011 14:19:35
How do I set the redirect url on Extranet session timeout?
Is it a setting somewhere or ...?
Replies
Nicolai Høeg Pedersen
Posted on 21/03/2011 14:25:04
You can create a logoff link like this:
/Admin/Public/ExtranetLogoff.aspx
And you can add the page to redirect to after the logoff like this:
/Admin/Public/ExtranetLogoff.aspx?ID=123
Then the logoff will execute and redirect the user to the page with the ID 123
/Admin/Public/ExtranetLogoff.aspx
And you can add the page to redirect to after the logoff like this:
/Admin/Public/ExtranetLogoff.aspx?ID=123
Then the logoff will execute and redirect the user to the page with the ID 123
Arnaldo Sena
Posted on 23/01/2012 20:26:10
is possible to send other parameters to the page? like ...
/Admin/Public/ExtranetLogoff.aspx?ID=123&client=3
/Admin/Public/ExtranetLogoff.aspx?ID=123&client=3
David Matheson
Posted on 24/01/2012 10:32:30
See no reason why not, as you can capture client=3 at ID=123 using
See the manual for more info
David
<!--@Server:Request.client-->
David
Nicolai Høeg Pedersen
Posted on 26/01/2012 10:36:13
@Arnaldo
You cannot send addition parameters as it is now. But I'll change it so you can for 8.0.2.0
An option is to make a notification scubscriber: Notifications.Standard.User.OnBeforeExtranetLogOff and do your redirect in that.
You cannot send addition parameters as it is now. But I'll change it so you can for 8.0.2.0
An option is to make a notification scubscriber: Notifications.Standard.User.OnBeforeExtranetLogOff and do your redirect in that.
Arnaldo Sena
Posted on 27/01/2012 18:29:46
@Nicolai
Your suggestion works, thank you.
Your suggestion works, thank you.
You must be logged in to post in the forum