asptoday_discuss thread: how can prevent the explorer from deciphering the simbol as "_" and "."
Message #1 by "jacer" <jacer@2...> on Mon, 21 Jan 2002 01:59:24
|
|
when I use as this:
response.redirect("http://localhost/show_check_table2_3.asp")
my explorer decipher the URL to
http://localhost/show%255Fcheck%255Ftable2%255F3%252Easp
is there anybody know how does this happen?
and how can prevent the explorer from deciphering the simbol as "_"
and "."?
Message #2 by "asame" <asame00@y...> on Mon, 21 Jan 2002 03:30:51 -0000
|
|
It's called URL Encoding or HEX Encoding. You can stop it (in this case) by
removing the spaces and numbers (futile?).
----- Original Message -----
From: "jacer" <jacer@2...>
To: "ASPToday Discuss" <asptoday_discuss@p...>
Sent: Monday, January 21, 2002 1:59 AM
Subject: [asptoday_discuss] how can prevent the explorer from deciphering
the simbol as "_" and "."
> when I use as this:
> response.redirect("http://localhost/show_check_table2_3.asp")
> my explorer decipher the URL to
> http://localhost/show%255Fcheck%255Ftable2%255F3%252Easp
> is there anybody know how does this happen?
> and how can prevent the explorer from deciphering the simbol as "_"
> and "."?
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
Message #3 by "jacer" <jacer@2...> on Mon, 21 Jan 2002 08:42:14
|
|
I have ever published this code to another server such as PWS, and it
worked perfectly.
so I think may there be some switchs on my server(WIN2000/IIS5.0) which I
should turn on?
> It's called URL Encoding or HEX Encoding. You can stop it (in this case)
by
> removing the spaces and numbers (futile?).
>
|