how to find address from postcode like in asp.net c#
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Siddhartha SharmaPosted Mar 22, 2019, 12:43 AM
string requestUri = string.Format("http://maps.googleapis.com/maps/api/geocode/xml?address={0}&sensor=false", Uri.EscapeDataString(address));
WebRequest request = WebRequest.Create(requestUri);
WebResponse response = request.GetResponse();
smart workPosted Mar 19, 2019, 6:38 AM
Madan ShekarPosted Mar 19, 2019, 5:37 AM