Posted by: mdavey - Tuesday, 8 March 2022 01:42:52 |
---|
Hi, I am using the Sample Web App and was wondering if I could change the page you are directed to after you log in. Currently it goes to the forum page. I would like it to go to the Default page in the sample webapp root. Is this possible? Thanks |
Posted by: tha_watcha - Wednesday, 9 March 2022 09:55:00 |
---|
It is possible but at the moment only if you change the source. by changing the line (in the file Pages/Account/login.ascx.cs) ... [code=csharp]this.Get ().Redirect(ForumPages.Board);[/code] to [code=csharp]this.Page.Response.Redirect("~/Default.aspx");[/code] But i can make in configurable in the next release. |
Posted by: mdavey - Wednesday, 9 March 2022 15:42:56 |
---|
Worked like a charm. Thanks for the help. |