ASP 的问题,请高手进....(10分)

  • 主题发起人 主题发起人 国色天香
  • 开始时间 开始时间

国色天香

Unregistered / Unconfirmed
GUEST, unregistred user!
我想写一个 show.asp 文件,放在我的网站的 show 目录下,
当别人这样访问时:
http://www.abc.com/show/show.asp?book.index.html
自动跳转到 http://www.abc.com/book
当别人这样访问时:
http://www.abc.com/show/show.asp?music.index.html
自动跳转到 http://www.abc.com/music
(abc 代指我的域名,而不是真的 abc)
怎样实现呢?请高手帮帮我,着急
 
写javascript代码应该可以实现
 
通常的情况是 show.asp?参数名=music.index.html
if request("参数名") = "值"
then
Response.Redirect XXXX
 
dim v_requestStr
v_requestStr=trim(request.querystring("参数名"))
dim v_requestrStr()
v_requestrStr()=split(v_requestStr,".")
if v_requestrStr(0)<>&quot;&quot;
and v_requestrStr(1)<>&quot;&quot;
then

response.redirect &quot;http://www.abc.com/&quot;
&v_requestrStr(0) &&quot;/&quot;
&v_requestrStr(1)
end if
response.end
 
dim v_requestStr
v_requestStr=trim(request.querystring(&quot;参数名&quot;))
dim v_requestrStr()
v_requestrStr()=split(v_requestStr,&quot;.&quot;)
if v_requestrStr(0)<>&quot;&quot;
and v_requestrStr(1)<>&quot;&quot;
then

response.redirect &quot;http://www.abc.com/&quot;
&v_requestrStr(0) &&quot;/&quot;
&v_requestrStr(1) &&quot;.&quot;
&v_requestrStr(2)
end if
response.end
 
多人接受答案了。
 
后退
顶部