Request獲取url資訊的各種方法比較

2021-09-05 13:13:32 字數 685 閱讀 6327

在asp.net程式設計中經常需要用request獲取url的有關資訊,request中有多種方法獲取url資訊,但我經常忘了各種方法的具體作用,今天我就寫了個測試程式,將各種方法得到的結果列出來,以後用時直接參考一下就行了。

/testweb

request.currentexecutionfilepath:

/testweb/default.aspx

request.filepath:

/testweb/default.aspx

request.path:

/testweb/default.aspx

request.pathinfo:

e:\www\testweb\

request.physicalpath:

e:\www\testweb\default.aspx

request.rawurl:

/testweb/default.aspx

request.url.absolutepath:

/testweb/default.aspx

request.url.absoluteuri: htt

p:request.url.host:

www.test.com

request.url.localpath:

/testweb/default.aspx

request獲取url的方法總結

辣麼多屬性 方法 不用就忘了 當需要用的時候撓頭也想不到,現在總結一下 以備用 例如 http localhost testweb default.aspx request.url.absolutepath testweb default.aspx request.url.absoluteuri r...

獲取Request請求的路徑資訊

從request物件中可以獲取各種路徑資訊,以下例子 假設請求的頁面是index.jsp,專案是webdemo,則在index.jsp中獲取有關request物件的各種路徑資訊如下 string path request.getcontextpath string basepath request....

NodeJs 獲取url資訊

取到的值是 http localhost 8888 select?aa 001 bb 002 console.log p.protocol 取到的值是 http console.log p.hostname 取到的值是 locahost console.log p.host 取到的值是 localh...