ASP如何通过request获取带参数网址
4个回答
展开全部
直接获取
比如index.asp?id=9
在index.asp页面<% dim id
id=requed("id") %>
<%=id%> 就是其参数
将此参数应用代码中,就可以了
比如index.asp?id=9
在index.asp页面<% dim id
id=requed("id") %>
<%=id%> 就是其参数
将此参数应用代码中,就可以了
追问
追答
显示
Storm代理
2023-08-29 广告
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I...
点击进入详情页
本回答由Storm代理提供
展开全部
你是要获取整串的url地址吗??这个ASP目前没有办法实现,必须通过获取端口号,参数项等等重新组合才行,,如下
dim url
url=url&"http://"&request.ServerVariables("Server_NAME")&request.ServerVariables("SCRIPT_NAME")
if(len(trim(request.ServerVariables("QUERY_STRING")))>0) then
url=url & "?" & request.ServerVariables("QUERY_STRING") //检索get传递的参数在进行组合
end if
dim url
url=url&"http://"&request.ServerVariables("Server_NAME")&request.ServerVariables("SCRIPT_NAME")
if(len(trim(request.ServerVariables("QUERY_STRING")))>0) then
url=url & "?" & request.ServerVariables("QUERY_STRING") //检索get传递的参数在进行组合
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
html="http://"
html=html&Request.ServerVariables("Server_Name")
html=html&Request.ServerVariables("URL")
if request.ServerVariables("QUERY_STRING")<>"" then
html = html &"?"& Request.ServerVariables("QUERY_STRING")
end if
response.write html
%>
html="http://"
html=html&Request.ServerVariables("Server_Name")
html=html&Request.ServerVariables("URL")
if request.ServerVariables("QUERY_STRING")<>"" then
html = html &"?"& Request.ServerVariables("QUERY_STRING")
end if
response.write html
%>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
每个参数单独用request.querystring获取
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询