Hi I saw from another question that it's possible to set theme via (on beforePageLoad event)
if ( ! theme.equals(context.getSessionProperty("xsp.theme"))) {
context.setSessionProperty("xsp.theme", theme);
context.redirectToPage(context.getUrl().toSiteRelativeString(context));
}
But was wondering whether it's possible to set values in xsp.properties via SSJS or Java ?
Would I need to build the DB after it's been set ?