[心缘地方]同学录 |
首页 | 功能说明 | 站长通知 | 最近更新 | 编码查看转换 | 代码下载 | 常见问题及讨论 | 《深入解析ASP核心技术》 | 王小鸭自动发工资条VBA版 |
发表人 | 主题:Request.ServerVariables |
嘎嘎,是我 身份:admin 发帖:1438 登陆次数:3287 |
1F
发表于 2006/12/26 22:10:07
<% ''This will return the physical path to a file that you include this code in Response.write Server.MapPath(Request.ServerVariables("Path_Info")) %> ------------------------------- ASP: How to Get the Current Page URL Sometimes, you might want to get the current page URL that is shown in the browser URL window. For example if you want to let your visitors submit a blog post to Digg you need to get that same exact URL. There are plenty of other reasons as well. Here is how you can do that. Add the following code to a page: <% function curPageURL() dim s, protocol, port if Request.ServerVariables("HTTPS") = "on" then s = "s" else s = "" end if protocol = strleft(LCase(Request.ServerVariables("SERVER_PROTOCOL")), "/") & s if Request.ServerVariables("SERVER_PORT") = "80" then port = "" else port = ":" & Request.ServerVariables("SERVER_PORT") end if curPageURL = protocol & "://" & Request.ServerVariables("SERVER_NAME") &_ port & Request.ServerVariables("SCRIPT_NAME") end function function strLeft(str1,str2) strLeft = Left(str1,InStr(str1,str2)-1) end function %> You can now get the current page URL using the line: <% response.write(curPageURL()) %> If your page had Querystring info you want as well you could try code like this: <% response.write(curPageURL() & "?" & Request.ServerVariables("QUERY_STRING")) %> If your page had Form info that might have been posted to it then use the following code: <% response.write(curPageURL() & "?" & Request.Form) %> Sometimes it is needed to get the page name only. The following example shows how to do it: <% function curPageName() dim pagename pagename = Request.ServerVariables("SCRIPT_NAME") if inStr(pagename, "/") > 0 then pagename = Right(pagename, Len(pagename) - instrRev(pagename, "/")) end if curPageName = pagename end function response.write("The current page name is " & curPageName()) %> --------------------------------------------------------------- |
CopyRight © 心缘地方 2005-2999. All Rights Reserved |