YAFLogo

Posted by: Pegasus - Thursday, 5 January 2012 17:09:49
Hi! We've some selfprogrammed subpages outside the YAF-Installation, but in its folder like a chat and a portal. If a user tries to open the chat.aspx, he has to log in. We check this with [code=csharp]if (this.PageContext().IsGuest))[/code] But if the user tries to open the chat, he has to login for more than one time. It seems, that the session can't be read or something else. On PageLoad, we add a YAF session like this: [code=csharp] YafWebService serv = new YafWebService(); serv.Session.Add("Chat Session", null); [/code] Is there a workaround for the session handling? Can anybody help us? Thanks a lot.