Re: About Response.Redirect
From: McKirahan (News_at_McKirahan.com)
Date: 02/24/05
- Next message: Bob Barrows [MVP]: "Re: INSERT INTO error"
- Previous message: qq: "About Response.Redirect"
- In reply to: qq: "About Response.Redirect"
- Next in thread: qq: "Re: About Response.Redirect"
- Reply: qq: "Re: About Response.Redirect"
- Reply: Roland Hall: "Re: About Response.Redirect"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 24 Feb 2005 12:13:56 -0600
"qq" <qq@discussions.microsoft.com> wrote in message
news:07214434-E86B-4DAF-A6A9-0D844A69AEE6@microsoft.com...
> Hi,
>
> Does anyone know about Response.Redirect? I want user to login to our FTP
> server via an asp page on my website with their username and password. I
have
> created a form with username and password in a .html. User input their
> username and password from the page. And I created a .asp file as follows
to
> redirect our FTP Server.
>
> <%@ LANGUAGE = "VBScript" %>
> <% Option Explicit %>
> <% Dim username
> username = Request.Form("username") %>
> <% Dim password
> password = Request.Form("password") %>
> <% Dim URL
> URL = "ftp://" & username & ":" & password & "@ftp.mysite.com"
> Response.Redirect URL
> %>
>
> It doesn't work. But it is working when I change to URL =
> "http://www.mysite.com".
>
> Can anybody help out the issue? Thanks a lot.
>
> --Qing
>
That URL format is disallowed with WinXP SP2.
- Next message: Bob Barrows [MVP]: "Re: INSERT INTO error"
- Previous message: qq: "About Response.Redirect"
- In reply to: qq: "About Response.Redirect"
- Next in thread: qq: "Re: About Response.Redirect"
- Reply: qq: "Re: About Response.Redirect"
- Reply: Roland Hall: "Re: About Response.Redirect"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|