Re: Blank page problem

  •  11-10-2009, 3:16 AM

    Re: Blank page problem

    Hi Mark,
     
    Can you try the code below on your site?
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register TagPrefix="DotNetGallery" Namespace="DotNetGallery" Assembly="DotNetGallery" %>   
    4.   
    5. <script runat="server">   
    6.     protected override void OnInit(EventArgs e)   
    7.     {   
    8.         base.OnInit(e);   
    9.         GalleryBrowser1.AlbumID = "General";   
    10.     }   
    11. </script>   
    12.   
    13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">   
    14. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">   
    15. <head runat="server">   
    16.     <title>DotNetGallery</title>   
    17. </head>   
    18. <body>   
    19.     <form id="form1" runat="server">   
    20.         <DotNetGallery:GalleryBrowser runat="server" ID="GalleryBrowser1" Width="720" Height="430" />   
    21.     </form>   
    22. </body>   
    23. </html>  

    If you still get the permission issue. Try give full permission(write/read) to user 'Everyone' of that folder (or the root folder).
     
    Any problem you can mail to me directly.
     
     
    Regards,
     
    ken
View Complete Thread