Click here to Skip to main content
15,898,768 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
my task is i have one url like http://www.trap.com/handler.ashx$agshdgj,67123,sdj*
like this url is coming and how store the entire url in one variable like


string st="http://www.trap.com/handler.ashx$agshdgj,67123,sdj*"

please help me
Posted

1 solution

Hi,use below code,hope it will help you
C#
string url = HttpContext.Current.Request.Url.AbsoluteUri;
           // http://localhost:1302/TESTERS/Default6.aspx

           string path = HttpContext.Current.Request.Url.AbsolutePath;
           // /TESTERS/Default6.aspx

           string host = HttpContext.Current.Request.Url.Host;
           // localhost

           Response.Write(url);
           Response.Write("<br />");
           Response.Write(host);
           Response.Write("<br />");
           Response.Write(path);
 
Share this answer
 
v2
Comments
lokesh lokesh 2-Dec-12 23:54pm    
hi
this is getting only url path
but i want url+remaining data also like this

string st="http://www.trap.com/handler.ashx$agshdgj,67123,sdj*"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900