/// <include file='doc\HtmlFormAdapter.uex' path='docs/doc[@for="HtmlFormAdapter.RenderBodyTag"]/*' />
 protected virtual void RenderBodyTag(HtmlMobileTextWriter writer, IDictionary attributes)
 {
     writer.WriteBeginTag("body");
     foreach (DictionaryEntry entry in attributes)
     {
         writer.WriteAttribute((String)entry.Key, (String)entry.Value, true);
     }
     writer.WriteLine(">");
 }