Re: error upload file

  •  01-11-2012, 5:27 AM

    Re: error upload file

    Hi Danielef82,
     
    Is your site on a load balancing, web farm, or cloud environment?
     
    Can you show me your gallery page code?
     
    Is your site online? If so, can you send me the gallery page url? So we can check it too.
     
    Using any ajax control with gallery?
     
    Do you get the same issue with the example below?
     
    <%@ Page Language="C#" %>
    <%@ Register TagPrefix="DotNetGallery" Namespace="DotNetGallery" Assembly="DotNetGallery" %>
    <script runat="server">  
        void Page_Load(object sender, EventArgs e)
        {
            gallery1.AllowEdit = true;
        }  
       
    </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 id="Head1" runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <a href="#" onclick="thegallerybrowser.ShowEditor();return false;">Admin Console</a>
            <DotNetGallery:GalleryBrowser runat="server" ID="gallery1" Width="720" Height="430"
                Culture="en-Us" uplo />
        </form>
    </body>
    </html>
     
     
    Regards,
     
    Ken 
View Complete Thread