Hi TorskTallin,
Can you create a test page by the code below and post your test page url? I will check it and get back to you as soon as possible.
<%@ Page Language="C#" %>
<%@ Register TagPrefix="DotNetGallery" Namespace="DotNetGallery" Assembly="DotNetGallery" %>
<script runat="server">
protected override void OnLoad(EventArgs e)
{
GalleryBrowser1.AllowEdit = true;
GalleryBrowser1.AllowPostComment = true;
GalleryBrowser1.AllowShowComment = true;
base.OnLoad(e);
}
</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>DotNetGallery</title>
</head>
<body>
<form id="form1" runat="server">
<a href="#" onclick="thegallerybrowser.ShowEditor();return false;">Admin Console</a>
<DotNetGallery:GalleryBrowser runat="server" ID="GalleryBrowser1" Width="720" Height="430"
Layout="SlideShow" />
</form>
</body>
</html>
Regards,
Ken