添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
谦虚好学的大脸猫  ·  Echarts ...·  4 周前    · 
道上混的饭盒  ·  Get-Date ...·  1 周前    · 
喝醉的羽毛球  ·  DataGridColumn.SortMem ...·  6 天前    · 
体贴的小马驹  ·  es 字段权重排序 ...·  1 年前    · 
重感情的机器人  ·  Not able to create ...·  1 年前    · 
睿智的弓箭  ·  日志logback配置: 解决 ...·  2 年前    · 

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge
public:
 property System::String ^ PhysicalApplicationPath { System::String ^ get(); };
public string PhysicalApplicationPath { get; }
member this.PhysicalApplicationPath : string
Public ReadOnly Property PhysicalApplicationPath As String

Property Value

Examples

The following code example uses the HtmlEncode method to HTML-encode the value of the PhysicalApplicationPath property and the WriteLine method to write the encoded value to the file. This code example is part of a larger example provided for the HttpRequest class.

// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath));
sw.WriteLine(Server.HtmlEncode(Request.RawUrl));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath))
sw.WriteLine(Server.HtmlEncode(Request.RawUrl))