Re: integration question?Posted on February 07, 2007 by GuestBy default, Web Interface decides how to draw itself based on whether the user’s home page is the NavUI. You can force WI into the NavUI-style display by editing the file \app_data\site\serverscripts\include.aspxf. Find the getAGEAccessMode() method and change the return statement so that it always returns AGEAccessMode.EMBEDDED:/** * Gets the access mode of the site when the Web Interface is being accessed via * Access Gateway Enterprise. The access method determines the behaviour of the * site. * * This method will return null if called before authentication has * completed. * * @return the current access mode, or null if the access mode was not recognised * or the site is not being accessed via AGE. */public AGEAccessMode getAGEAccessMode() { AGEAccessMode accessMode = Session[SV_AGE_ACCESS_MODE] as AGEAccessMode; //return isAGEIntegrationEnabled() ? accessMode : null; return AGEAccessMode.EMBEDDED;} Reply