Edit comments??

Last post 09-03-2010, 5:27 AM by ThomaxVision. 6 replies.
Sort Posts: Previous Next
  •  08-05-2010, 8:25 PM 63146

    Edit comments??

    Is there a way for the administrator to edit comments, other than to edit the config files directly?
     
    bert
     
  •  08-18-2010, 8:54 AM 63478 in reply to 63146

    Re: Edit comments??

    Please open http://cutesoft.net/ASP.NET+Image+Gallery/Classic-Layout.aspx , right click one image, you will can find "Add Comment", you can click "Delete Comment" and then add the new comment, we will consider add the "Edit Comment" feature in future version.
     
    Regards,
    Eric
  •  09-01-2010, 7:44 AM 63786 in reply to 63478

    Re: Edit comments??

    Really nice :) i didn't see this feature.

    Is there a way to change the name of the comment? Like to who is logged in? Or edit it?

    I am going to buy the great product pretty soon, it does exactly what i want and works with my own asp.net apz.
  •  09-01-2010, 8:41 AM 63790 in reply to 63786

    Re: Edit comments??

    Dear ThomaxVision,
     
    Please open "CuteSoft_Client\Gallery\Culture\en\lang.xml", this is language resource file, you can search "comment" and change it to your own word. If you are using other language, please open related language folder.
     
    Thanks for asking
  •  09-01-2010, 3:08 PM 63794 in reply to 63790

    Re: Edit comments??

    Thanks Eric, how do i set the default Culture and where? I dident find that information in the document deployment.
  •  09-01-2010, 4:00 PM 63795 in reply to 63794

    Re: Edit comments??

    Dear ThomaxVision,
     
    Please refer to the following code:
    <%@ Page language="c#" AutoEventWireup="false" %>
    <%@ Register TagPrefix="DotNetGallery" Namespace="DotNetGallery" Assembly="DotNetGallery" %>
    <%@ Register TagPrefix="uc1" TagName="TopBanner" Src="Banner.ascx" %>
    <script runat="server">
    protected override void OnInit(EventArgs e)
    {
     base.OnInit(e);
    // if(Context.User.Identity.Name=="Admin")
    // {
      GalleryBrowser1.AllowEdit=true;
      GalleryBrowser1.AllowPostComment=true;
      GalleryBrowser1.AllowShowComment=true;
      GalleryBrowser1.Culture = "es";
    // }
    }
    </script>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
     <head>
      <title>Classic Layout - DotNetGallery</title>
      <link href="Sample.css" type="text/css" rel="stylesheet" />  
     </head>
     <body>
      <form id="form1" runat="server">
       <div id="Common">
        <uc1:topbanner ID="TopBanner1" runat="server"></uc1:topbanner>
        
        <div id="CommonBody" align="center">
         <div align="right" style="margin: 0 30px 5px 0">
         <%if(GalleryBrowser1.AllowEdit){%>
          <a href="#" onclick="thegallerybrowser.ShowEditor();return false;">Admin Console</a> |
         <%}%>
          <a href="#" onclick="thegallerybrowser.ShowSlider();return false;">Start slide show</a>
         </div>
         <dotnetgallery:gallerybrowser runat="server" id="GalleryBrowser1" Width="780" Height="400" />
        </div>    
       </div>
      </form>
     </body>
    </html>
     
    Thanks for asking
     
  •  09-03-2010, 5:27 AM 63827 in reply to 63795

    Re: Edit comments??

    Thanks Eric

    I had to change the code to this tough:
     
    <script runat="server">
    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);
        
        GalleryBrowser1.Layout="Classic";
        GalleryBrowser1.Culture = "no";
        
        if(Context.User.Identity.Name=="admin")
        {
            GalleryBrowser1.AllowEdit=true;
            GalleryBrowser1.AllowPostComment=true;
            GalleryBrowser1.AllowShowComment=true;        
        }
        
    }
    </script>
    Else the language would only be when "admin" is logged in . But thanks again.

    Great product i am going to buy the developer license soon.
View as RSS news feed in XML