I've added a feature to my onet.xml file which gets activated whenever a site gets created. However, that feature needs to know the url of the site being created. I thought I could figure that out from the current SPContext within the activation event of the feature, but when I created the site I got a null reference on SPContext.Current.

Is that to be expected, or have I done something wrong? If that is the case, does anyone have any suggestions how I can dynamically learn the URL of the site being created?

Thanks

link|improve this question
Just to clarify, when I refer to a site, I'm only actually referring to SPWeb objects, not the SPSite site collection which has already been created up front. – user247417 Jan 10 '10 at 10:49
feedback

1 Answer

It seems like you have created a feature receiver? They don't use SPContext but find the site they have been activated on through the properties, like so:

    public override void FeatureActivated(SPFeatureReceiverProperties properties)
    {
        using (SPWeb web = properties.Feature.Parent as SPWeb)
        {...}
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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