sharepoint2007

Sharepoint item locking after getting approved

I have a sharepoint custom list which has 5 columns ..the user should fill in first three columns and the other two should be locked for filling ..when the user enters the items and start the workflow if the workflow gets approved the 3 columns should be locked for editing and then the other two should be available for editing . Can som...

Where I get SharePoint Tutorials?

Where I get SharePoint Tutorials? ...

MOSS 2007 team site page title

Hi, I'm trying to display the page title (html title) on the default.aspx page of a custom site template. The template is based on a MOSS team site template. But the html page title is rendered empty. Can I change the code in the default.aspx and/or the sites master page to define the title myself? Details of the deafult.aspx and defau...

Public-facing SharePoint 2007 portal - authentication question

I am involved in developing a portal with a public-facing side. For this i created a web application with windows authentication for intranet zone and after that, I created an extension for an internet zone with fba. In the internet extension we have the following requirement: - able to acess to sharepoint backoffice using fba. - have a ...

SPWeb.Webs, Site vs SubSite

Hi, I have a very basic question here. I am confused between SPSite. SiteCollection and SPWeb. So my understanding is (or what I could research on this) that, http://My_server >>> TOP Level SIte or SPWEbApplication http://My_server/My_site >>>> Site Collection or SPSite Now a site under SPSite that will be referenced through SPWeb. ...

Locking sharepoint list item

I have a sharepoint custom list which has 5 columns ..the user should fill in first three columns and the other two should be locked..when the user enters the items and start the workflow if the workflow gets approved the 3 columns should be locked for editing and then the other two should be available for editing . Can someone please t...

How to update data in the user information list when using FBA

I've got to support a SharePoint web application which uses FBA with a custom membership and a custom role provider to authenticate the user against two different LDAPs. The user data are only stored in the user information lists. The SSP user profiles are not used. Now one of the users got married and therefore her surname got changed ...

Find the name and size of the uploaded document using Fiddler?

Will I be able to identify the name and size of a document that I am trying to upload into a SharePoint 2007 document library using Fiddler2 tool? ...

SharePoint Licensing

Hi - we are thinking of using SharePoint to host a web app for which we will allow internal staff and licensed external customers to access a website built on SharePoint. I am thinking that for each authenticated user (logged in) we would need an OS CAL & a SharePoint CAL & we would need a processor license for SQL Server - Is this corr...

How to prevent certain workflows from showing in SharePoint's Workflow.aspx page for a list.

I have a few workflows associated with a SharePoint list (e.g., Pages). Some are written as SharePoint WF workflows in Visual Studio, but some are no-code workflows created in SharePoint Designer. I programmatically start the WF workflows, but the no-code ones are started manually. When a user goes to "/_layouts/Workflow.aspx?ID=&List=&S...

Feature Activation

We want to activate the existing future for more than 100+ site-collections, what would be the right choice? can we achieve this through Powershell? ...

Sharepoint Blog Category view - Pagination issue...

Folks, I am facing a rather strange issue. In my Sharepoint Blog, I am not able to view more than 10 posts when I click on the Category filter page. The page only shows the latest 10 posts and when I click on the pagination for the next 10, it simply says that "There are no posts in this category." I tried searching online and some one...

Making sites on the fly, programatically

Hi, Is it possible to create a site on demand? So in the response of an event, such as button click. I want users to be able to see one site (all users), but users with assigned to a certain group will see two sites. Also, when would I want to create a seperate web application? Thanks ...

changing user permissions dynamically

I am designing a system on SharePoint. There is a approval list for the items. The members can approve, reject and edit the items. One from approval list has to fill the "assigned to" field in the item while approving it. The user who is added to "assigned to" field should able to edit the content of the item after it is approved. So, ho...

MOSS 2007. Handling restoration from recycle bin in workflows.

Workflows can wait for the item to be moved to recycle bin via OnWorkflowItemDeleted activity. Is there any way to handle the restoration of the item from recycle bin? ...

Sharepoint page redirection for unauthorised users

Hi, Is it possible, if so how(!), to auto redirect a user that doesnt have access to a certain page? I can see that in many cases this could be a complete pain for a user and confusing, but in my situation it would be ideal. Thx in advance! Steve ...

SPMenuField refreshing page in update panel?

I have SPGridView that has SPMenuField. I placed SPGridview in UpdatePanel. SPMenuField has 2 MenuItemTemplates "Edit" "Delete". When I click on any of the the MenuItem, the whole page is refreshing. I dont want to do that. How can I avoid that? See my code below. <script type="text/javascript"> function CareerHistoryFunction(param) { ...

Redirecting user from an old web to another in Sharepoint

Hi all: I want to add the ability to redirect users when they visit certain old sites. The URL of the old sites are unknown, but the server name is the same, e.g. Old site url: http://sharepoint/mySite/default.aspx New site url: http://sharepoint/myNewSite/... There are a lot of other pages within mySite, most of which must be r...

How to add files to a document library in a site definition in SharePoint 2007?

Hi all, I'm doing a site definition for SharePoint 2007. When the site is created, a document library called "Folder2" is created also. Now, I need to add some documents to this document library and appear as items in the document library standard views. My code is: <Lists> <List FeatureId="00bfea71-e717-4e80-aa17-d0c71b360101" Ty...

SharePoint: How to programatically reorder fields in a custom content type?

This is the code I wrote to reorder fields in a custom content type: //get the content type SPContentType listContentType = myList.ContentTypes[MyContentTypeName]; //get the field name to put first string firstFieldName = myList.Fields[FirstFieldDisplayName].InternalName; //get all field names in the content type List<string> fieldNames...