Quartz.NET from config.xml in ASP.NET

Can someone advise on what I am doing wrong.
I am trying to setup quartz so that on startup it will read an xml config file. Inside the file there is a job that activates my HelloEmail_Job.cs class (it is created correctly, extending IJob with the logic in the execute method). The xml also has a cron trigger for the job that will fire every minute (purely for testing).

ASP.NET SQL Profile Provider – Does the ProfileBase.Create() method hit DB?

I am working with the SQLMemebershipProvider and using Profiles. I have a custom class called UserProfile that inherits from the ProfileBase class and I use this to set custom properties like “FullName”. I am wanting to loop through all the users in the database and get access to their profile properties. On each iteration I am calling ProfileBase.Create() to get a new profile and then access the properties.

runAllManagedModulesForAllRequests = “true” killing windows authentication in IIS7

We have windows authentication set up on our staging server for our clients to help prevent google from indexing our staging URLs. We recently found out that one of our sites is seemingly ignoring our IIS settings (anonymous authentication is disabled, windows authentication is enabled). We ended up figuring out that removing the setting runAllManagedModulesForAllRequests=”true” on the modules node (which is required for our URL rewriting on the site) fixes the issue and the windows login/password box appears as expected when we browse to the site. If we keep the setting there, the site allows any anonymous user to browse the website.