0
votes
0answers
12 views
Create mysite of User programatically
if user's mysite is not created, it needs to be created to add list.
So how to check if mysite is existing or not and to create if not created.
0
votes
0answers
36 views
How do we export SPSite in SharePoint by C# ?
Hi all ,
I have a trouble with export SPSite. My site : http://prog-phongdang , I want to export this site to the folder C:/Export which this folder contains onet.xml and some other files of this …
0
votes
1answer
46 views
Drop pdf file to sharepoint in asp.net
Hi guys,
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
129 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
259 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){
…
2
votes
3answers
189 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 …
0
votes
1answer
89 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 …
2
votes
3answers
164 views
Issus deleting a site collection
Hi,
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 …
2
votes
3answers
264 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 = …
0
votes
0answers
69 views
How do I open search center web for a given site
I can determine the search center page for a site using:
site.OpenWeb().AllProperties["SRCH_ENH_FTR_URL"]
If I have multiple sites in a web application say site1 and site2. site1 has searchcenter …
1
vote
5answers
2k views
Programmatically Accessing SharePoint Style Library from within C#
Hi all
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 …
3
votes
6answers
1k 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 …
