Home Authors Posts by Raúl Ribeiro

Raúl Ribeiro

Raúl Ribeiro
0 POSTS 0 COMMENTS

using System.Web.Mail with authentication

0
MailMessage msg = new MailMessage(); msg.From = ConfigurationSettings.AppSettings.ToString();msg.Subject = subject;msg.To = messageTo;msg.Fields = Settings.SmtpServer;msg.Fields = Settings.SmtpServerPort.ToString(CultureInfo.InvariantCulture);msg.Fields = 2;msg.Fields = 1;msg.Fields = Settings.SmtpSendUserName;msg.Fields = Settings.SmtpSendPassword;SmtpMail.Send( msg );

QueryStringPageViewer WebPart for Sharepoint

0
    ///     /// Mads Haugbø Nissen 2003(c)    /// Objectware AS    /// Norway    ///     /// http://weblogs.asp.net/mnissen    ///     /// The QueryStringPageViewer provides the...

SharePoint Tools Galore List

0
  SharePoint toolsuites Coras workplace suiteSuite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...) Syntergy Provide lots of modules...

How to run another application or batch file from my Visual...

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

Como Serializar um Objecto para XML e Deserializar um XML para...

0
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 uma String (XML) para Objecto StringReader sr =...