SharePoint

There are 3 entries for the tag SharePoint
Aggiungere il Secondary Contact ad una site collection SharePoint

  esempio di codice per l’aggiunta di un secondary contact nella creazione di una site collection di SharePoint 1: internal void CreateSite(string serverUrl, string serverRelativeUrl, string title, string description, uint LCID, string templateName) 2: { 3: SPSecurity.RunWithElevatedPrivileges(delegate() 4: { 5: using (SPSite siteCollectionOuter = new SPSite(serverUrl +...

posted @ lunedì 8 marzo 2010 19:11 | Feedback (0)

Content DataBase per SharePoint

Interessante articolo per la creazione e gestione dei content database di SharePoint     riporto gli script dovesse mai spartire l’articolo Creating a Content Database CREATE DATABASE WSS_Content_MSSQLTIPS ON PRIMARY ( NAME = MSSQLTIPS_01_data, FILENAME = 'F:\data\MSSQLTIPS_01_data.mdf', SIZE = 20, MAXSIZE = 40, FILEGROWTH = 5 ), ( NAME = MSSQLTIPS_02_data, FILENAME = 'G:\data\MSSQLTIPS_02_data.ndf', SIZE = 20, MAXSIZE = 40, FILEGROWTH = 5 ) LOG ON ( NAME = 'MSSQLTIPS_log', FILENAME = 'c:\data\MSSQLTIPS.ldf', SIZE = 5MB, MAXSIZE = 25MB, FILEGROWTH = 5MB ); go alter database WSS_Content_MSSQLTIPS set single_user with rollback immediate go alter database WSS_Content_MSSQLTIPS collate Latin1_General_CI_AS_KS_WS go alter database WSS_Content_MSSQLTIPS set multi_user go   Using the Content Database in a...

posted @ giovedì 25 febbraio 2010 12:47

SharePoint Solution Generator 2008, Svcs 1.3, schema.xml e content type

Nell’ultimo periodo ho lavorato molto con i progetti di SharePoint Solution Generator 2008, e soprattutto con il file schema.xml. Spesso mi capita di avere dei dubbi su quello che sto facendo allora ho deciso di organizzare questi dubbi in una sorta di FAQ per un riferimento più veloce.   1. Come faccio ad assegnare un ordine alle colonne nella DispForm.aspx (vista di dettaglio) e nella EditForm.aspx (modifica dell’elemento)? L’ordine delle colonne è dato dall’ordine del content-type, quindi se si vuole dare un ordine si devono elencare le colonne nel <FieldRefs> Nota:...

posted @ sabato 22 agosto 2009 14:13 | Feedback (2)