Print Page | Close Window

non standard asp for image upload

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=5132
Printed Date: 30 March 2026 at 6:20pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: non standard asp for image upload
Posted By: potts
Subject: non standard asp for image upload
Date Posted: 19 August 2003 at 5:23pm

My server host uses none of the 5 recommended file upload protocols .... but when I FTP'd this uploads_process.aspx file that they gave me it uploads the files (sometimes).... BUT does not have the correct exits to have the image then appear in the posts (which is what I am after)

<%@ Page Language="VB" AspCompat="true" debug=true%>
<%

            Dim uploadFolderPath, Filefrom, filepath, inwhere, OrigFileName, fileName, intForumID, strMessageBoxType

'read in the forum ID and message box type
  intForumID = CInt(Request.QueryString("FID"))
  strMessageBoxType = Request.QueryString("MSG")


            uploadFolderPath = "d:\camelot\www\users\queenslander\organic\forum\uploads\"

 

            Filefrom = Request.Files.Get(0)

            filepath = Filefrom.fileName

            inwhere = Instr(1, StrReverse(filepath), "\") - 1

OrigFileName = Right(filepath,inwhere)

 

fileName = OrigFileName          

'fileName = getValidfileName(fileName, uploadFolderPath)

Filefrom.SaveAs(uploadFolderPath & fileName)
'Response.Redirect("")
%>

<html>
<head>
<title>Upload Success</title>
</head>

<body>
<h2>Upload Success</h2><hr>
<a href="Javascript:void(0)" onClick="win=window.close()">Click to Close</a>
</body>

</html>

I have tried inserting code from upload_images.asp supplied with v7.1 I am so very confused. Hope that you can give me some advice ? Regards and thanks .. Potts



-------------
There is "unity" in community.



Replies:
Posted By: MorningZ
Date Posted: 20 August 2003 at 6:24am
you can start by posting this in the ASP.NET forum and not here

-------------
Contribute to the working anarchy we fondly call the Internet



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