Marcio_123 1 Denunciar post Postado Fevereiro 25, 2017 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
quintelab 91 Denunciar post Postado Fevereiro 25, 2017 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