# Tuesday, June 30, 2009

The server-packages of JuneCumulative Update for Microsoft Office SharePoint Server 2007 and WindowsSharePoint Services 3.0 are ready for download. KB articles are also avaliable.

Download Information

Windows SharePoint Services3.0 June cumulative update package
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=971538

Office SharePoint Server2007 June cumulative update package
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=971537

Detail Description

Description of the WindowsSharePoint Services 3.0 June cumulative update package
http://support.microsoft.com/kb/971538

Description of the OfficeSharePoint Server 2007 June cumulative update package
http://support.microsoft.com/kb/971537

posted on Tuesday, June 30, 2009 11:31:53 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback
# Thursday, June 18, 2009

Microsoft just published three brief videos offering a sneak peek towhat you’ll see in SharePoint 2010. The videos, an intro one, one for IT Pro’sand one for developers, is the first news Microsoft is sharing on the newversion. 

SharePoint2010 Sneak Peek Videos  

posted on Thursday, June 18, 2009 11:31:24 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback
# Monday, June 15, 2009
Wrong Way  
SPAttachmentCollection attachments = listitem.Attachments;  
foreach (SPFile file in attachments)
{    
   //Something

 

True  
SPFolder folder = web.Folders["Lists"].SubFolders[list.Title].SubFolders["Attachments"].SubFolders[listitem.ID.ToString()];  

Then you can do:   foreach (SPFile file in folder.Files) {   // Something  }
posted on Monday, June 15, 2009 11:30:33 AM (GMT Daylight Time, UTC+01:00)  #    Comments [9] Trackback
# Thursday, June 11, 2009

In Sharepoint sometimes, the column header has the presence icon next to the work Modified, but no users have ther presence icon displayed when you hover over the user control.

Solution is very easy. 

Add the site to your trusted sites (or local/intranet) and the icon will appear 

posted on Thursday, June 11, 2009 11:30:02 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1] Trackback
# Wednesday, June 10, 2009

In Sharepoint or your custom web applications you want to change cascading style sheet (css)dynamically. In this case you can use javascript to do this. Christopher Heng describes this inthesitewizard.com 

posted on Wednesday, June 10, 2009 11:29:30 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1] Trackback
# Monday, June 08, 2009

TABLE.ms-recyclebin TD {
     background: #000000 url('<image_path>') repeat-x;
     border: 1px solid #FFFFFF;


TABLE.ms-recyclebin TD A{
     color: #FFFFFF;
}

posted on Monday, June 08, 2009 11:29:09 AM (GMT Daylight Time, UTC+01:00)  #    Comments [2] Trackback
# Saturday, June 06, 2009

SPSite  _site =  new   SPSite ( " http://portal " );
SPWeb web = _site.AllWebs[0];
Microsoft.SharePoint.SPList list = web.SiteUserInfoList;
Microsoft.SharePoint.SPUser user = web.SiteUsers["DOMAIN\\portal.user1"];
Microsoft.SharePoint.SPListItem item = list.Items.GetItemById(user.ID);
item["Picture"] ="http://portal/SiteCollectionImages/portaluser1.jpg";
item.Update();

posted on Saturday, June 06, 2009 11:28:34 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback

Sharepoint End User Content Team writes an article that describes "How to create custom Sharepoint site theme". Nice article!

http://sharepoint.microsoft.com/blogs/GetThePoint/Lists/Posts/Post.aspx?ID=122 

posted on Saturday, June 06, 2009 11:27:47 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback
# Friday, June 05, 2009

You can remove the home link from view with CSS.

The code for your alternate CSS file is:

td#zz1_TopNavigationMenun0 {
 display:none;

posted on Friday, June 05, 2009 11:27:23 AM (GMT Daylight Time, UTC+01:00)  #    Comments [1] Trackback
# Monday, June 01, 2009

ASP.NET MVC  enables you to build Model View Controller (MVC) applications by using the ASP.NET framework. ASP.NET MVC is an alternative, not a replacement, for ASP.NET Web Forms that offers the following benefits:

    -  Clear separation of concerns
    -  Testability - support for Test-Driven Development
    -  Fine-grained control over HTML and JavaScript
    -  Intuitive URLs

For detail information and more samples click the following link. 

http://www.asp.net/mvc  

posted on Monday, June 01, 2009 11:24:31 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0] Trackback