I have ASP.NET project(WebForms not MVC) to manage companies Project,Logs,ToDos, etc......
I want to allow user to access the site with url start with their company name. for example:
my site is www.mysite.com
i want to allow users to access my site like this
www.company1.mysite.com
or www.company2.mysite.com
or www.companyX.mysite.com
and then inside my code i could get the comanyX
part.
can you give me any clues how to do this pragmatically or what steps i should do on my server or inside my code
not i'm using ASP.NET WebForms not MVC.