views:

180

answers:

2

Hi, I'm building a sitebuilder project. The database and all other ASP.NET code is ready but I don't know how to handle domain names, because I will have only one site in IIS7 but more than a hundred sites are gonna publish from my site. (Like the sitebuilder you can find on the internet.) When users go the page, ex: www.myname1.com, it will be published from my site but the URL that the user wrote will be protected, so the user never understand the behind. (The site is coded in ASP.NET 2.0 and the hosting environment is Windows Server 2008 so IIS7.) I need some advice where to start. Thanks.

+1  A: 

I am not 100% sure I understand you, but if you configure a host header for each site, you can assign more than one site to a single IP address. Is that what you're trying to do?

JP Alioto
A: 

thanks for your concern,sorry for my english first of all. Let me explain my problem,I've one application in IIS.My application is capable of changing layout,template and the content of sites according to the siteId.For example a client wants to publish its site and client become a member of my main site and and client tells me that its domain is www.clientexample.com.When you enter that domain into browser its content is being published from my main application according to siteId (siteID is ww w.clientexample.com).But client newer understands that its site is published by my application.So I want to publish more than 100 sites in one application in iis ,but they choose template and fill the content of their own from my application. Real world example for example seagullproject.org or rvsitebuilder.co m/

slayer35