1
vote
1answer
125 views

joining absolute and relative URLs of sharepoint in <a href> anchor tag

I want to join absolute and relative URL parts of a sharepoint site in <a href="http://somesite"> tag. i already have this: strng.Format(@"<a ...
0
votes
3answers
226 views

Getting SPWeb Object in two ways

I want to access SPWeb object in feature under its FeatureActivated method. There are two ways to do this: Public Override void FeatureActivated(SPFeatureReceiverProperties properties) { //Method 1 ...
0
votes
1answer
227 views

Dispose SPWeb object in recursive function

I have updated my code as per suggestions from suggestions on my earlier question , I still see the error message for one of my recursive function. Below is the code snippet to recursively loop ...
2
votes
3answers
462 views

Error using current SPWeb from HttpModule

Is it allowed to access SPWeb and specifically SPWeb.ID from PreRequestHandlerExecute ? Writing an HttpModule [SharePoint2010] and trying to access current web ID using this line of code : private ...