Tagged Questions
9
votes
6answers
7k views
Best Pattern for AllowUnsafeUpdates
So far, in my research I have seen that it is unwise to set AllowUnsafeUpdates on GET request operation to avoid cross site scripting. But, if it is required to allow this, what is the proper way to ...
2
votes
1answer
176 views
Keep the same SPWeb & SPSite through the whole application lifecycle?
We have several projects with many DAL. Many sharepoint lists like customers, sells, providers which reflect in C# classes. We make each object implement IDisposable through an abstract mother class. ...
2
votes
3answers
208 views
Should I dispose of this SPWeb?
I'm hoping someone can help me out. I need to get the root web of the current site from the SPContext. It's easily done with the following
SPContext.Current.Site.RootWeb
I'm comfortable with the ...
1
vote
4answers
352 views
Is possible to inherit from SPWeb?
Is possible to inherit from SharePoint classes such like: SPWeb, SPList etc.
or this classes are sealed? I couldn't find right answer.
Chris
Thanks for replys.
Rich, you are right - the ...
1
vote
5answers
8k views
Programmatically Accessing SharePoint Style Library from within C#
Firstly, I'm a newbie to C# and SharePoint, (less than a month's experience) so apologies if this is an obvious or easy question but I've been trawling the net for a couple of days now with absolutely ...
0
votes
2answers
679 views
why my sharepoint workflow always stop when i use this code?
I need to find an user in a list to set the assignedto task property, these informations are in a list. So i use this method :
public static SPUser GetSPUser(SPListItem item, string key){
...