Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help

Raúl Ribeiro

Windows SharePoint Services 3.0 , .net, Microsoft Office SharePoint 2007, Office 2007 and 2010

News

September 2005 - Posts

New features in SharePoint v3
Brief overview of some of the new features coming up with SharePoint v3: List item security Recycle Bin (user and admin level) Workflow! (using Windows Workflow Foundation) Other data source lookup columns UI improvements like better menu’s treeviews Read More...
PJ Hough and others - First look at next version of Sharepoint
http://download.microsoft.com/download/c/8/2/c824658b-33d5-4431-9e24-61ad2bf6e8f7/sharepoint_services_team_2005.wmv The team talks about the future of Sharepoint and gives us a demo Read More...
Scott Woodgate and team - Announcing Windows Workflow Foundation
Scott Woodgate and team - Announcing Windows Workflow Foundation At the PDC Microsoft announced Windows Workflow Foundation . Here Scott Woodgate and team (Abhay Parasnis and Paul Andrew) demonstrate the power of the new Workflow Foundation. It's all Read More...
Asp.Net "Atlas"
Asp.Net Atlas Asp.Net Atlas Forum ASP.NET “Atlas” is a package of new Web development technologies that integrates an extensive set of client script libraries with the rich, server-based development platform of ASP.NET 2.0. “Atlas” enables you to develop Read More...
Applications for Windows SharePoint Services
http://www.microsoft.com/technet/prodtechnol/sppt/wssapps/default.mspx These application templates are tailored to address the needs and requirements for specific business processes or sets of tasks for organizations of any size. The applications are Read More...
Sharepoint Web Part Page Maintenance
Whe you have and error in Sharepoint that says that a Web Part or Web Form Control on this Web Part Page cannot be displayed. You have to remove the Web Part thats causing the error. In order to do this, simply append "?contents=1" to the URL of the page, Read More...
Mail Validation Tool
http://www.dnsstuff.com/tools/mail.ch?domain=MAIL_TO_TEST Read More...
ASP.NET Portal Framework
ASP.NET Portal Framework Personalize Your Portal with User Controls and Custom Web Parts ASP.NET 2.0 comes with a built-in portal framework that brings two significant benefits to the table. First, it dramatically reduces the investment for building ASP.NET Read More...
Converting Hexadecimal string to byte[]
string hexString = txtHex.Text; int discarded; txtByteCount.Text = ((int)HexEncoding.GetByteCount(hexString)).ToString(); txtLength.Text = hexString.Length.ToString(); byte[] byteArray = HexEncoding.GetBytes(hexString, out discarded); Read More...