Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Marcio_123

PEGANDO URL COM get_url

Recommended Posts

Ola Galeria blz,

 

Podem me ajudar na seguinte questão, preciso pegar parte da url.

 

Ex: Tenho a url: www.site.com.br/Pagina.php

 

No meu get_url preciso pegar somente a parte  Pagina

 

Valeu galera por compartilhar o conhecimento.

abraços

Compartilhar este post


Link para o post
Compartilhar em outros sites

Você consegue pegar diferentes partes da URL:

 

Se fosse a URL: http://localhost:8080/mysite/page.aspx?p1=1&p2=2

 

HttpContext.Current.Request.Url.Host
localhost

HttpContext.Current.Request.Url.Authority
localhost:8080

HttpContext.Current.Request.Url.AbsolutePath
/mysite/page.aspx

HttpContext.Current.Request.ApplicationPath
/mysite

HttpContext.Current.Request.Url.AbsoluteUri
http://localhost:8080/mysite/page.aspx?p1=1&p2=2

HttpContext.Current.Request.RawUrl
/mysite/page.aspx?p1=1&p2=2

HttpContext.Current.Request.Url.PathAndQuery
/mysite/page.aspx?p1=1&p2=2

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.