Hi, I found this image gallery script that has a drop down containing the list of galeries. The problem is if you are logged in and use the drop down, it logs you out of the forum. A test account for this is:
screenname: snitztest
password: test
link: http://www.weeweeslap.com/coaster_pics/gallery.asp?gallery=Busch%20Gardens%20Tampa
the code for the dropdown code for it is:
<td align="center"
    nowrap
    style="border-left:1px solid navy;"> Select a Gallery: </td>
<td align="center"
    nowrap
    style="border-right:1px solid navy;">
<form action="gallery.asp">
<select name="gallery"
        style="font-size:9px;font-family:arial;"
        onChange="document.forms[0].submit();">
<optgroup label="Galleries">
<% 
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFolder(sitepath)
set sf = f.subfolders
For Each FolderName in sf %>
<option value="<%= FolderName.name %>"<% if FolderName.name  = gallery then %> selected <% end if %>><%= FolderName.name %></option>
<%galcount = galcount +1
NEXT
%>
</optgroup>
<optgroup label="Options">
<option value="Return_to_main">Return to Main</option>
</optgroup>
</select>
<input type="hidden"
       name="currentpage"
       value="1">
</form>
<% set fs = nothing
set f = nothing
set sf = nothing %>
</td>
Can anyone indicate what might be causing the logging out and a fix for it?
Thank you!