Admin Console

Last post 01-29-2010, 3:34 PM by Adam. 1 replies.
Sort Posts: Previous Next
  •  01-29-2010, 6:20 AM 58432

    Admin Console

    I am analyzing/evaluating CuteSoft Image Gallery and planning to buy developer license for multiple domains but before that could you please confirm following things:
    1. Can I remove admin console option from Image Gallery and integrate it with my application's admin panel? If yes could you please provide some demo code how to do that?
    2. If I get developer license, will I get access to modify/change the code or functionality of original Image gallery to full fill my specific requirement?
    3. Will I be able to tag (caption) images? Examples you have given in earlier posts are comments not the tag/caption. 

    I would appreciate if you please suggest on above points. 

    Kind regards,
    ~Vivek Pandey 

  •  01-29-2010, 3:34 PM 58439 in reply to 58432

    Re: Admin Console

    >>Can I remove admin console option from Image Gallery and integrate it with my application's admin panel?
    Yes.

    First you need to add admin console code into your page.:

    <%if(GalleryBrowser1.AllowEdit){%>
          <a href="#" onclick="thegallerybrowser.ShowEditor();return false;">Admin Console</a> |
    <%}%>

    In the page on init event you can show the admin options of gallery based on the current user access level:

    protected override void OnInit(EventArgs e)
    {
     base.OnInit(e);
       if(Context.User.Identity.Name=="Admin")
        {
           GalleryBrowser1.AllowEdit=true;
           GalleryBrowser1.AllowPostComment=true;

           GalleryBrowser1.AllowShowComment=true;
       }
    }

    >>If I get developer license, will I get access to modify/change the code or functionality of original Image gallery to full fill my specific requirement?
    Yes.

    >>Will I be able to tag (caption) images? Examples you have given in earlier posts are comments not the tag/caption. 

    Go to http://cutesoft.net/ASP.NET+Image+Gallery/Classic-Layout.aspx

    Click the admin console link--> Right click in the image you want to edit-->Click Edit -->Type image caption in the description field.
     
    Hope it helps,
     
    Keep me posted

     


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View as RSS news feed in XML