You are hereBlogs / ChrisJ's blog / Hello World

Hello World


By ChrisJ - Posted on 12 June 2008

Hello World! This post has been created in Windows Live Writer, allowing me to prepare the post off-line and then post it to the blog using XML-RPC.

 

The instructions for getting it to work with Drupal are on Sean Buscay's blog

 

It also allows you to do cool things like copy-paste from Visual Studio and keep the formatting:

public static void WriteToEventLog(string message, 
                                   EventLogEntryType entryType)
        {

            string sSource = "MyApplication";
            string sLog = "Application";
            string sEvent = message;


            if (!EventLog.SourceExists(sSource))
                EventLog.CreateEventSource(sSource, sLog);
            EventLog.WriteEntry(sSource, sEvent, entryType);
        }