sharepoint-2007

When should I use 'view' instead of 'read only' in SharePoint permissions?

大城市里の小女人 提交于 2020-01-06 07:12:48
问题 I'm using SharePoint 2007 and I need to know when/where I should use the 'view' instead of 'read-only' for user permissions. 回答1: Here is a link to a default permission matrix. Read level has only one more permission than View Only So the users with read level can view the source of the aspx pages, but the users with view only permission can only view the result. 来源: https://stackoverflow.com/questions/4071942/when-should-i-use-view-instead-of-read-only-in-sharepoint-permissions

When should I use 'view' instead of 'read only' in SharePoint permissions?

扶醉桌前 提交于 2020-01-06 07:12:45
问题 I'm using SharePoint 2007 and I need to know when/where I should use the 'view' instead of 'read-only' for user permissions. 回答1: Here is a link to a default permission matrix. Read level has only one more permission than View Only So the users with read level can view the source of the aspx pages, but the users with view only permission can only view the result. 来源: https://stackoverflow.com/questions/4071942/when-should-i-use-view-instead-of-read-only-in-sharepoint-permissions

Remove “Create blog” link from My Site

空扰寡人 提交于 2020-01-06 02:08:28
问题 what is the best way to remove the upper-right link "Create blog" from My Site ? I have found this article, but I hope there's another solution than doing that ! link text I'm using MOSS 2007. Thanks for your help, Raphaël 回答1: This Google query: remove "create blog" link moss turned up this page and numerous others: http://sfguyalex.blogspot.com/2008/08/hideremove-create-blog-link-on-my-site.html --Jesse Taylor 来源: https://stackoverflow.com/questions/1532776/remove-create-blog-link-from-my

DWS CreateFolder() files are getting created on shareppoint “Style Library”

▼魔方 西西 提交于 2020-01-05 09:27:53
问题 I am Creating folder on Sharepoint as: Dws ds = new Dws(); ds.Credentials = new NetworkCredential(Login,Password); ds.Url = "http://myservername/_vti_bin/DWS.asmx"; ds.PreAuthenticate = true; string strResult = ""; strResult = ds.CreateFolder("SiteName/Documents/NewFolderName"); I am getting strResult value as "RESULT" . Here Folders are getting created but not in above specified path. It is getting created in "Style Library" of Sharepoint. But why? 回答1: try this: strResult = ds.CreateFolder(

MOSS 2007 Create Lookup Column but list is not in dropdown

半腔热情 提交于 2020-01-05 05:51:59
问题 I have create a list in sharepoitn and I am trying to add a column whih is a look up to another list. The list that I am trying to look up is a parent site to the site I a currentley on. I do not see the list that I wish to add in the drop down. Any ideas why this list is not apearing? 回答1: The lookup column dropdown will only find lists at the current site level. What you want to do is the following: Create a site column on the parent site (the site that has the source list). This site

cannot update lookup field when uploading document using CopyIntoItems

你。 提交于 2020-01-03 15:31:31
问题 I am trying to upload a document from my local machine using the Copy.asmx webservice, the CopyIntoItems method. I can successfully upload the document and a DateTime property but I cannot update a lookup property of the document library. I am using MOSS 2007 with sp2 The code I am using is shown below: string[] destinationUrls = { Uri.EscapeUriString(destinationUrl) }; CopySharepointService.FieldInformation dateInformation = new CopySharepointService.FieldInformation(); dateInformation

Sharepoint 2k7 - Custom WebPart not loading

拈花ヽ惹草 提交于 2020-01-03 05:16:49
问题 First off i am a big fat NOOB in regards to Sharepoint 2007 webpart development but i am working at it. Now for the real problem, so i develop this webpart and follow the 'Loose' advise from various sites on how to setup the features.xml, .xml, manifest.xml, solution.ddf and solution.build files. Basically, i have a all-in-one solution where i build the webpart and then in post-build event compile all the source files into the WSP deployment package. Problem i am having is that I can add the

access list in sharepoint 2007 using c#

女生的网名这么多〃 提交于 2020-01-02 08:31:59
问题 I'm looking to compile data from a few diffrent custome lists in sharepoint 2007 Its a hosted sharepoint site so I don't have access to the machine backend. Is there any example code to access the sharepoint site using c#? here is my code thus far (i get the error Cannot connect to the Sharepoint site ''. Try again later. ) DataSet dt = new DataSet(); string query = "SELECT * FROM list"; string site = "http://sp.markonsolutions.com/Lists/Security/"; string list = "35E70EO4-6072-4T55-B741

access list in sharepoint 2007 using c#

♀尐吖头ヾ 提交于 2020-01-02 08:31:31
问题 I'm looking to compile data from a few diffrent custome lists in sharepoint 2007 Its a hosted sharepoint site so I don't have access to the machine backend. Is there any example code to access the sharepoint site using c#? here is my code thus far (i get the error Cannot connect to the Sharepoint site ''. Try again later. ) DataSet dt = new DataSet(); string query = "SELECT * FROM list"; string site = "http://sp.markonsolutions.com/Lists/Security/"; string list = "35E70EO4-6072-4T55-B741

Sharepoint Conditional fields in Edit.aspx

六月ゝ 毕业季﹏ 提交于 2020-01-01 07:12:23
问题 I would like to display certain meta data fields in the edit form based on the value of a fields. Example: Users upload a document to the Doclib to be approved by there manager. They are allowed to change the meta data Name,Case No, Location until the item is approved by the manager. Once the item is approved I would like to set Name and Case Number to read only. What is the best way to meet this requirement? If approved = yes set Name and Case No = Read only Else do nothing. I have tried