I'm working on a project where we will create new domain names through a registrar, and set the DNS to our own server.
This server will serve up pages from ONE .Net (.aspx) location. The .aspx page will present data appropriate to the incoming URL.
For example:
---> some sort of parameter translation --->
---> some sort of parameter translation --->
Another option for this project is the creation of sub-domains. I'm actually going to use a URL rewriter to translate the incoming requests, thus:
urlAAA.processor.com ---> processor.com/index.aspx?param=urlAAA.com
urlBBB.processor.com ---> processor.com/index.aspx?param=urlBBB.com
So my real question is about the first case. Can someone bring some clarity to this?
Does IIS 7 have a way to solve this or ...?
Thanks.
This server will serve up pages from ONE .Net (.aspx) location. The .aspx page will present data appropriate to the incoming URL.
For example:
---> some sort of parameter translation --->
---> some sort of parameter translation --->
Another option for this project is the creation of sub-domains. I'm actually going to use a URL rewriter to translate the incoming requests, thus:
urlAAA.processor.com ---> processor.com/index.aspx?param=urlAAA.com
urlBBB.processor.com ---> processor.com/index.aspx?param=urlBBB.com
So my real question is about the first case. Can someone bring some clarity to this?
Does IIS 7 have a way to solve this or ...?
Thanks.