SPSFAQ
SharePoint Server Frequently Asked Questions
affiliate links


Buy a sponsored link

You could have a link to your website on every page of SPSFAQ.


Customising SharePoint

SPSFAQ0302113 - How do I use the Dataview Web Part? - 0 Comments - stephencummins - Wed, Aug 18th, 2004 - Customisation
This Web Cast is a good introduction:

http://go.microsoft.com/fwlink/?LinkId=32651

MSDN Webcast: The Power of the Data View Web Part – Level 200

Start Time: Thursday, August 26, 2004 1:00 PM (GMT-08:00) Pacific Time (US & Canada)
End Time: Thursday, August 26, 2004 2:30 PM (GMT-08:00) Pacific Time (US & Canada)
SPSFAQ0302112 - Can I integrate ActiveX and a Web Part? - 0 Comments - stephencummins - Wed, Aug 18th, 2004 - Customisation
Thanks to Simon Mourier's WebLog for this:

http://blogs.msdn.com/smourier/archive/2004/07/13/181836.aspx

SPSFAQ0302111 - How do I write an impersonating Web Part? - 0 Comments - stephencummins - Wed, Aug 18th, 2004 - Customisation
This is a great post from Bryant pointing towards some essential information on writing secure Web Parts.

http://blogs.sqlxml.org/bryantlikes/archive/2004/06/30/753.aspx
SPSFAQ0302110 - GotDotNet Workspaces Directory for developers - 0 Comments - stephencummins - Wed, Jul 7th, 2004 - Customisation
http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx

Contains:
InstallAssemblies
SharePoint Configuration Analyzer
SharePoint Explorer
Inspector Web Part
GhostHunter Web Part

SPSFAQ0302109 - How can I customise the Toolpane for my Web Parts? - 0 Comments - stephencummins - Wed, Jul 7th, 2004 - Customisation
SPSFAQ0302108 - Building Custom Alert Result Channels in SharePoint Portal Server 2003 - 0 Comments - stephencummins - Wed, Jul 7th, 2004 - Customisation
SPSFAQ0302107 - Can I put .NET User Controls in a Web Part? - 0 Comments - stephencummins - Wed, Jul 7th, 2004 - Customisation
Yes, using this code:

http://www.reflectionit.nl/WebPart1.aspx

What might suit better is Jan Tielen's SmartPart as it lets you call the SharePoint OM from the controls:

http://weblogs.asp.net/jan/archive/2004/06/10/152932.aspx
SPSFAQ0302106 - How do I include my programatically created sites in the site directory list? - 0 Comments - stephencummins - Thu, Jun 17th, 2004 - Customisation
You need to include your programmatically created site in the Site Directory list! (from MSD2D)

//Get reference to the portal
SPSite myPortal = new SPSite("http://localhost);
SPWeb myWeb=portal_site.AllWebs["SiteDirectory' target='_new'>;
SPListCollection myWeblists=myWeb.Lists;

//Get reference to the site directory
SPList siteDir= myWeblists["Sites' target='_new'>;

//Add an new entry
SPListItemCollection listItems = siteDir.Items;
SPListItem item = listItems.Add();

//Assign values to the list columns
item["Title' target='_new'> = objCommunity.Name;
item["Description' target='_new'> = objCommunity.Purpose;

//update the new list item
item.Update();

Nigel.

Page 9 of 24  -  Jump to: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

Search options
Search for
   
In fields
   
In category
   
Dated in
   

links
subscribe
Get the latest posts via email:

quick search
Search via Google:

random books


Copyright © SPSFAQ.com, Stephen Cummins Limited, All Rights Reserved