vote up 0 vote down star

What is the easiest way to program a beta period into a site? I dont know if superuser works this way but is it to have code that runs on every page (toolbar perhaps) to check for a betaPassword cookie and to redirect you to a page if it isnt correct?

Is there a better place to run the code rather then the toolbar? (IIRC the toolbar is in every one of my page)

flag

38% accept rate

2 Answers

vote up 0 vote down

The easiest way would be to implement a custom HttpModule

link|flag
Agreed. This is how we did it. – twlichty Aug 26 at 12:20
vote up 2 vote down

If you run WebForms, you could add the check in the master page code-behind. Alternatively, you can create your own page class by inheriting from System.Web.UI.Page, implement the check there and then derive all pages in the project from your own class instead.

If you're with MVC, I would implement this in a custom ActionFilter attribute.

link|flag

Your Answer

Get an OpenID
or

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