I have a windows 2000 server running IIS 5.0. On the website stored here, there is an html form that requests a username and password then redirects to the ftp site (hosted on a different server) using the below .NET code:
URL = "ftp://" & username & ":" & password & "@ftp.mysite.com"
Response.Redirect URL
This worked fine when we had a Linux FTP server, but we recently installed a Windows 2000 FTP server running IIS 5.0 and now this only works for certain users.
Anyone have any ideas?
URL = "ftp://" & username & ":" & password & "@ftp.mysite.com"
Response.Redirect URL
This worked fine when we had a Linux FTP server, but we recently installed a Windows 2000 FTP server running IIS 5.0 and now this only works for certain users.
Anyone have any ideas?