I have figured out how to configure the appropriate pieces of the web.config for session timeout and am now being redirected to the Timeout.wgx page. As you can imagine I'd rather be redirected to our login page. I've seen some posts on overriding the Timeout.wgx in a theme, then setting the Context.Session.IsLoggedOn property to false. For the life of me, I can't seem to find enough good documentation on implementing this. Can someone point me in the right direction? I'm using VWG 6.3.6.
Regards,
M
Hello ,
try this.Context.Redirect("yourpage.wgx");
let me know if it fixed your problem
Regards, Izi Versano The Visual WebGui team
I'd love to do something like that, but where do I do it?
Hi JCWelch,
In your Timeout.wgx page's Page_Load event - simply call Me.Context.Redirect("Login.wgx")
Hope this helps!
Ryan
Ahh... but I don't have a Timeout.wgx page. If you ready my original post, I've been having issues trying to figure out how to override the Timeout.wgx page.
Thanks,