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

June 2005 - Posts

using System.Web.Mail with authentication
MailMessage msg = new MailMessage(); msg.From = ConfigurationSettings.AppSettings["From"].ToString(); msg.Subject = subject; msg.To = messageTo; msg.Fields[" http://schemas.microsoft.com/cdo/configuration/smtpserver "] = Settings.SmtpServer; msg.Fields[" Read More...
QueryStringPageViewer WebPart for Sharepoint
/// /// Mads Haugbø Nissen 2003(c) /// Objectware AS /// Norway /// /// http://weblogs.asp.net/mnissen /// /// The QueryStringPageViewer provides the same functionality as the regular PageViewerWebPart /// but allows providing a selection of querystring Read More...
SharePoint Tools Galore List
SharePoint toolsuites Coras workplace suite Suite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...) Syntergy Provide lots of modules such as replication technologies for SharePoint, Read More...
How to run another application or batch file from my Visual C# .NET code
Example 1 . Running a command line application, without concern for the results: private void Run(){ System.Diagnostics.Process.Start(@"C:\runFile.bat"); } Example 2 . Retrieving the results and waiting until the process stops (running the process synchronously): Read More...
Como Serializar um Objecto para XML e Deserializar um XML para Objecto
Serializar um Objecto para String (XML) StringWriter sw = new StringWriter(); XmlSerializer serializer = new XmlSerializer( typeof ( OBJECT )); serializer.Serialize(sw, getAcessoryEquipmentsRequest.SearchCriteria); strXML = sw.ToString(); Deserializar Read More...