博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#获取当前页面的url
阅读量:5080 次
发布时间:2019-06-12

本文共 2408 字,大约阅读时间需要 8 分钟。

   C#获取当前页面的url

string a=   Request.ApplicationPath;            //   /         string b = Request.CurrentExecutionFilePath;    //   /WebForm1.aspx         string c = Request.FilePath;                    //   /WebForm1.aspx         string d = Request.PhysicalApplicationPath;    //    c:\users\纯访\documents\visual studio 2013\Projects\WebApplication4\WebApplication4\          string ee = Request.RawUrl;                    //    /WebForm1.aspx           string f = Request.Url.AbsolutePath;           //    /WebForm1.aspx          string g = Request.Url.AbsoluteUri;           //     http://localhost:7251/WebForm1.aspx         string h = Request.Url.Host;                  //     localhost          string i = Request.Url.LocalPath;             //     /WebForm1.aspx

 JS 获取当前页面的url

=================条目=============================
thisDLoc = document.location; thisURL = document.URL; thisHREF = document.location.href; thisSLoc = self.location.href; thisTLoc = top.location.href; thisPLoc = parent.document.location; thisTHost = top.location.hostname; thisHost = location.hostname;

效果:

=============1===============================================thisURL: [http://localhost:7251/HtmlPage2.html]thisHREF: [http://localhost:7251/HtmlPage2.html]thisSLoc: [http://localhost:7251/HtmlPage2.html]thisDLoc: [http://localhost:7251/HtmlPage2.html]=============1============================================================2===============================================thisTLoc: [http://localhost:7251/HtmlPage2.html]thisPLoc: [http://localhost:7251/HtmlPage2.html]thisTHost: [localhost]thisHost: [localhost]=============2============================================================3===============================================thisHPage: [HtmlPage2.html]thisUPage: [HtmlPage2.html]=============3================================================================条目=============================thisDLoc = document.location; thisURL = document.URL; thisHREF = document.location.href; thisSLoc = self.location.href; thisTLoc = top.location.href; thisPLoc = parent.document.location; thisTHost = top.location.hostname; thisHost = location.hostname;

 

转载于:https://www.cnblogs.com/laopo/p/5476723.html

你可能感兴趣的文章
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
Python内置函数(29)——help
查看>>
Android TextView加上阴影效果
查看>>
《梦断代码》读书笔记(三)
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
spring security 11种过滤器介绍
查看>>
代码实现导航栏分割线
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
luogu4849 寻找宝藏 (cdq分治+dp)
查看>>
关于源程序到可运行程序的过程
查看>>
C# Async与Await的使用
查看>>
Mysql性能调优
查看>>
iOS基础-UIKit框架-多控制器管理-实例:qq界面框架
查看>>
poj1611 简单并查集
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>
跨平台开发 -- C# 使用 C/C++ 生成的动态链接库
查看>>