private void addMessageIfNotNull( Control control, string s )
 {
     if( s != null )
         control.AddControlsReturnThis( "The value posted from this box was '{0}'".FormatWith( s ).GetLiteralControl() );
 }