문제

I created an Event Receiver, but the problem is that I can't get a reference to the SPContext: SPContext.Current returns null. I need it to add some lists to the site. Does anyone have an idea of how I could get it?

Also I tried putting break points inside the event receiver, but FeatureActivates never triggers for some reason. What is the correct event to use when a list is activated right after de deployment?

도움이 되었습니까?

해결책

You can't get SPContext inside handlers - this is by design. You should use event properties passed as argument to the handler to get reference to current web, list item etc. For example in feature activated handler you can do it like this:

public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
    SPWeb web = properties.Feature.Parent as SPWeb;  
    //Some code with web
}

If Feature Scope is Site then

public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
        SPSite site = properties.Feature.Parent as SPSite;  
        //Some code with web
}

다른 팁

I figured that the scope of the feature matters. If you deployed the feature in the site scope then you can get the web using this line of code:

SPWeb web = (properties.Feature.Parent as SPSite).OpenWeb();

I know this thread is kind of old, but really you should use:

SPWeb web = properties.OpenWeb() 

as per SP best practices: http://msdn.microsoft.com/en-us/library/ee724407.ASPX It ensures you have no objects to dispose and keeps you from hitting a casting error.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top