vote up 0 vote down star

Hi, i'm new to development with .net and working on a personal project. my project will allow users to create their own simple mobile site.

I require to write http module that will handle pseudo subdomains.

I already setup my dns wildcard to domain so sub.domain.com xxx.domain.com etc points to same application. I want to be able to extract sub and ID parts from sub.domain.com/pageID.html url and load settings of page from database server in order to build and render it to client.

i can do it with urlrewrite tools like isapirewrite but i want my application to be independent from OS so that server doesnt require installation of any 3rd party app.

is it possible to do it with http handlers? can anyone post sort of sample?

thanks

flag

2 Answers

vote up 2 vote down

You can check the domain at any time. Where to do it dependings on your application's goals. E.g. if you want to serve different pages depending on the domain you could do like this:

public class MyModule : IHttpModule
{
	public void Dispose()
	{
	}

	public void Init(HttpApplication context)
	{
		context.BeginRequest += context_BeginRequest;
	}

	void context_BeginRequest(object sender, EventArgs e)
	{
		HttpApplication app = sender as HttpApplication;
		string host = app.Request.Url.Host;
		if(host == "first.domain.com")
		{
			app.Context.RewritePath("~/First.aspx");
		}
	}
}
link|flag
vote up 0 vote down

so, then with above code i can extract sub domain adn url requested and use as i whish?

after posting this Q, i've found this http://codebetter.com/blogs/brendan.tompkins/archive/2006/06/27/146875.aspx

code uses server transfer methode instead of rewrite. is there any performance difference between? served content will not need any sesion and/or it wont get any post backs

link|flag
Don't know sorry. Are you expecting a lot of users? – Cristian Libardo Jan 15 at 21:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.