I need to give some of our customers an area to upload and download files. I want them to be able to access this area through our website. I have a login.asp that checks UserID and Password and then sends them to a FTP Server I have running. The following is the code I use:
Here's the problem
The Login.asp resides in a SSL so when my customer is being redirected they get a message that they are leaving a secure area. They then come to a page not found. At this point they can hit the refresh button and the FTP login box comes up asking for ID and Password.
Can I keep them in the SSL through the FTP login and how do I keep them from having to refresh when they get to that point. I am using third party FTP software
Thanks for any help,
Randy
Funny how such little knowledge can get me into sooooo much trouble.
Code:
<%
Response.end
ELSE
Response.Redirect "ftp://ftpSite#:Port#"
Response.end
END IF
%>
The Login.asp resides in a SSL so when my customer is being redirected they get a message that they are leaving a secure area. They then come to a page not found. At this point they can hit the refresh button and the FTP login box comes up asking for ID and Password.
Can I keep them in the SSL through the FTP login and how do I keep them from having to refresh when they get to that point. I am using third party FTP software
Thanks for any help,
Randy
Funny how such little knowledge can get me into sooooo much trouble.