I would like to know what is the proper way to send a get request to a URL with # in it, for example http://xxx/#/home in old angularjs that still has # in their route?
I am using the .net HttpClient class, and I tried
HttpResponseMessage response = await client.GetAsync("http://xxx/#/home");
and i am getting badrequest in response until i remove the # part.
Any ideas? Thanks.