Print Page | Close Window

Avatars from 7.5 to 7.7

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=8995
Printed Date: 07 April 2026 at 1:29pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Avatars from 7.5 to 7.7
Posted By: onoff3
Subject: Avatars from 7.5 to 7.7
Date Posted: 17 January 2004 at 2:18am

I want to upgrade my ver from 7.5 to 7.7.  I have over 200 avatars and do not want to edit 200 lines in the select_avatar file.  In ver 7.5 I can replace all the code in select_avatar file with the following:

Dim fso
Dim rootFolder
Dim files
Dim file

Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set rootFolder = fso.GetFolder(Server.MapPath("avatars/"))
Set files = rootFolder.Files


For Each file in files
 If file.Type = "GIF Image" OR file.Type = "JPG Image" OR file.Type = "JPEG Image" Then
  Response.Write("     &n bsp;    <option value=""avatars/" & file.Name & """>" & file.Name & "</option>")
 End If
Next

Set rootFolder = Nothing
Set fso = Nothing
Set files = Nothing
%>

And all the avatars in the avatar folder show up, however in ver 7.7 putting the above in the select_avatar file nothing shows up.  How can I fix it without typing all the code for each and every one of the avatars?




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net