Home Authors Posts by Raúl Ribeiro

Raúl Ribeiro

Raúl Ribeiro
0 POSTS 0 COMMENTS

New features in SharePoint v3

0
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...

PJ Hough and others – First look at next version of...

0
http://download.microsoft.com/download/c/8/2/c824658b-33d5-4431-9e24-61ad2bf6e8f7/sharepoint_services_team_2005.wmvThe team talks about the future of Sharepoint and gives us a demo

Scott Woodgate and team – Announcing Windows Workflow Foundation

0
Scott Woodgate and team - Announcing Windows Workflow FoundationAt the PDC Microsoft announced Windows Workflow Foundation. Here Scott Woodgate and team (Abhay Parasnis and...

Asp.Net “Atlas”

0
Asp.Net AtlasAsp.Net Atlas ForumASP.NET “Atlas” is a package of new Web development technologies that integrates an extensive set of client script libraries with the...

Applications for Windows SharePoint Services

0
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....

Sharepoint Web Part Page Maintenance

0
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...

Mail Validation Tool

0
http://www.dnsstuff.com/tools/mail.ch?domain=MAIL_TO_TEST

ASP.NET Portal Framework

0
ASP.NET Portal FrameworkPersonalize Your Portal with User Controls and Custom Web PartsASP.NET 2.0 comes with a built-in portal framework that brings two significant benefits...

Converting Hexadecimal string to byte[]

0
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);