goto.asp

来自「客户管理系统使用ASP.NET和Access」· ASP 代码 · 共 20 行

ASP
20
字号
<%
select0=trim(request("select"))
word=trim(request("word"))

if select0="baidu" then
 response.Redirect("http://www.baidu.com/s?ie=gb2312&wd="&word&"")
 response.End()
end if

if select0="google" then
 response.Redirect("http://www.google.cn/search?hl=zh-CN&q="&word&"&meta=&aq=f")
 response.End()
end if

if select0="alibaba" then
 response.Redirect("http://search.china.alibaba.com/search/company_search.htm?keywords="&word&"")
 response.End()
end if
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?