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
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
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
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
TABLE.ms-recyclebin TD { background: #000000 url('<image_path>') repeat-x; border: 1px solid #FFFFFF;} TABLE.ms-recyclebin TD A{ color: #FFFFFF;}
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();
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
You can remove the home link from view with CSS.
The code for your alternate CSS file is:td#zz1_TopNavigationMenun0 { display:none;}
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
Page rendered at Friday, March 12, 2010 11:10:24 AM (GMT Standard Time, UTC+00:00)
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.