Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Code Support: ASP (Non-Forum Related)
 drop down menu code logging out of forum
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

weeweeslap
Senior Member

USA
1077 Posts

Posted - 16 October 2007 :  23:55:04  Show Profile  Visit weeweeslap's Homepage  Send weeweeslap an AOL message  Send weeweeslap a Yahoo! Message
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!

coaster crazy

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 17 October 2007 :  04:48:51  Show Profile
The onchange event submits the 0th form on the page which is the login or logout form. You'd be better off giving the form an ID and changing the onchange event to:

document.getElementById("yourid").submit()


Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07