get current page from url

前端 未结 6 1686
无人及你
无人及你 2020-12-30 19:45

I want to write a c# method to retrieve the current page. eg Default6.aspx I know I can do the following:

string url = HttpContext.Current.Request.Url.Absolu         


        
6条回答
  •  时光说笑
    2020-12-30 20:15

    The class you need is System.Uri

    Dim url As System.Uri = Request.UrlReferrer 
    Debug.WriteLine(url.AbsoluteUri)   ' => http://www.mysite.com/default.aspx
    Debug.WriteLine(url.AbsolutePath)  ' => /default.aspx
    Debug.WriteLine(url.Host)          ' => http:/www.mysite.com
    Debug.WriteLine(url.Port)          ' => 80
    Debug.WriteLine(url.IsLoopback)    ' => False
    

    http://www.devx.com/vb2themax/Tip/18709

提交回复
热议问题