Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
1answer
83 views

How to detect events when user goes from one site collection to another in the same web application?

I have a several site collections in the same web application and I need to handle events when user goes from one site collection to another. I need it for specific actions, like setting "lcid" cookie ...
3
votes
3answers
690 views

SharePoint SPSite Disposing

The scenario I have, is in the Execute method of a SPJobDefinition I want to go through every SPSite in the web application. So I have the following code: foreach (SPSite site in ...
2
votes
2answers
116 views

SPSite.Exists(url) return false although the url exists

Does anybody know why SPSite.Exists(url) return false although the url exists. If I check the above statement, it returns false. But I can open the site without any problems if I directly use ...
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 ...
2
votes
3answers
753 views

Issus deleting a site collection

I'm currently doing some test where I try to delete a site collection programmatically. Thereby I realized some strange behavior by SharePoint. I used the following code to test the site collection ...
2
votes
4answers
1k views

Sharepoint SPSite

I am trying to create a spsite of object for sharepoint search but i am getting exception in production as website not found SPSite site = new SPSite("sitename"); ServerContext scon = ...
1
vote
2answers
40 views

How to identify the SharePoint exception when trying to create a new site

Ok, This seems stupid but I figured I would ask because there is a lot of expertise to tap into here and I will probably learn a good bit from the answers. I have a service center panel for creating ...
1
vote
1answer
215 views

Sharepoint 2010 Show SPList on webpart from a remote SPSite

Im new to sharepoint and im trying to get a SPList from another SPSite i have on same farm, that itself is not a problem. But i want to do something like this: ...
1
vote
3answers
3k views

How to get all site collections in a web application

I want to list all site collections under my web application; the purpose is to list all mysites created by users. Like that: /members/sites/sqladmin /members/sites/sqluser /members/sites/sqluser1 ...
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
1answer
452 views

Dealing with Sharepoint locked Site Collections

I am playing with an application that can crawl the contents of sharepoint server. But I got a problem while working with Locked Site collections. There are some methods that cannot be used with ...
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
1answer
250 views

Error While creating SPSite instance with SharePoint Foundation 2010

I'm getting the following error while trying to create a SPSite instance (not open it, just create it): "The Web application at <URL> could not be found. Verify that you have typed the URL ...
0
votes
2answers
119 views

SPSite constructor returns cached instance.

The SPSite constructor (new SPSite(mySiteId)) returns a cached entry, even though the site no longer exists. How can I prevent this?
0
votes
2answers
514 views

SPList and SPSite name - different screen and file name - is it possible?

Is there a possibility to have different list or site display name (on screen) than the file name? I mean to display other name in left quick launch bar than the file names itself? For example I would ...
0
votes
1answer
139 views

Drop pdf file to sharepoint in asp.net

what's the best way to accomplish this task? (new to sharepoint) Do we need to install sharepoint on webserver in order to use sharepoint.dll/spsite object or just adding the reference to ...
0
votes
2answers
273 views

SPSite Directory Selection (C#)

I have a code that is running through all the Sites that we have created in SharePoint and finding the Sites that have documentation. When I create the SPSite object (?), I am defining a specific ...
0
votes
2answers
678 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){ ...
0
votes
1answer
618 views

How do I specify the encoding of an SPSS syntax file?

I am writing out statistical results in SPSS with code like OMS / SELECT Tables Headings / DESTINATION FORMAT = OXML OUTFILE='C:\Temp\outfile.xml'. The syntax file is saved as UTF-8 (with ...