I want to create website default page country wise.
Similar to google
When google open in Pakistan is auto redirect to https://www.google.com.pk
If UK
auto redirect to https://www.google.co.uk
How to do this using asp.net c# web form?
Remember that I want this at asp.net c# web form page to page
Not domain to domain
Asked
Active
Viewed 98 times
0

Cœur
- 37,241
- 25
- 195
- 267
-
Idea is to detect the country then redirect the user to the desired page. This might be some help - https://stackoverflow.com/a/17588358/4720652 – Saharsh Jan 28 '18 at 03:40
-
1. Have you actually registered all those domains? You don't get them automatically. You have to purchase each one. – Joel Coehoorn Mar 08 '18 at 16:48
-
2. Do you have a Geo-Location service, to know where your user is coming from? Google has to look up this information based on IP address, routing information, or which CDN processes the request, and doesn't always get it right. – Joel Coehoorn Mar 08 '18 at 16:57