在框架内的asp怎样获取地址栏的文件名? 10
在框架内的asp怎样获取地址栏的文件名?在服务器上的index.html里放置<iframesrc="tmp.asp"></iframe>,然后在tmp.asp里怎么写才...
在框架内的asp怎样获取地址栏的文件名?
在服务器上的index.html里放置<iframe src="tmp.asp"></iframe>,然后在tmp.asp里怎么写才能得到“index.html”这个文件名呀,我要写进数据库啊,怎么办?有好的我加分。
谢谢你的回答,但这样不行,写不到数所库里面去。 展开
在服务器上的index.html里放置<iframe src="tmp.asp"></iframe>,然后在tmp.asp里怎么写才能得到“index.html”这个文件名呀,我要写进数据库啊,怎么办?有好的我加分。
谢谢你的回答,但这样不行,写不到数所库里面去。 展开
1个回答
展开全部
在tmp.asp中用
<%
fullpath=Request.ServerVariables("HTTP_REFERER")
%>
来获取完整路径,如果你只要index.html”这个文件名,而不要完整路径,你将字符串处理一下就可以了。
<%
fullpath=Request.ServerVariables("HTTP_REFERER")
filename=mid(fullpath,InstrRev(fullpath,"/")+1)
response.write filename
%>
<%
fullpath=Request.ServerVariables("HTTP_REFERER")
%>
来获取完整路径,如果你只要index.html”这个文件名,而不要完整路径,你将字符串处理一下就可以了。
<%
fullpath=Request.ServerVariables("HTTP_REFERER")
filename=mid(fullpath,InstrRev(fullpath,"/")+1)
response.write filename
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询