Esempio n. 1
0
        private static String getAppDirName(int appId)
        {
            ContentApp app = ContentApp.findById(appId);

            if (app == null)
            {
                throw new Exception("app not found: Content.AppId=" + appId);
            }
            return(HtmlLink.GetStaticDir(app));
        }
Esempio n. 2
0
 public static String GetlAppDirName( int appId ) {
     ContentApp app = ContentApp.findById( appId );
     if (app == null) throw new Exception( "app not found: Content.AppId=" + appId );
     return HtmlLink.GetStaticDir( app );
 }