June 2005 - Posts
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...
/// /// 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 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...
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...
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...