You can paste code blocks into VisualBlogger using the Code Formatter button, paste code into the dialog, select the language from the list and Bob's your uncle.
Example:
1<%@ Register TagPrefix="uc1" TagName="MyLinks" Src="MyLinks.ascx" %>
2<%@ Control Language="c#" Inherits="Dottext.Web.UI.Controls.Header" %>
3<%@ Register TagPrefix="uc1" TagName="BlogStats" Src="BlogStats.ascx" %>
4<div>
5 <table style="background-image:url(/images/blog/robsGiantHead_bg.jpg);
6 background-repeat:no-repeat;
7 background-position: top right;">
8 <tr>
9 <td class="HeaderTitles">
10 <h1 class="HeaderTitle"><asp:hyperlink
11 id="HeaderTitle"
12 runat="server"
13 CssClass="HeaderMainTitle"></asp:hyperlink></h1>
14 <p id="tagline"><asp:literal id="HeaderSubTitle"
15 runat="server"></asp:literal></p>
16 </td>
17 <td>
18 </td>
19 </tr>
20 </table>
21</div>
22<div>
23 <table id="HeaderBar" class="HeaderBar">
24 <tr>
25 <td class="HeaderBarTab" nowrap>
26 <uc1:MyLinks id="MyLinks1" runat="server"></uc1:MyLinks>
27 </td>
28 <td class="HeaderBarTabWindow">
29 <asp:Image
30 ID="BlueTab"
31 ImageUrl="../Images/TransTabRight.gif"
32 Runat="server"
33 ImageAlign="AbsMiddle"></asp:Image>
34 </td>
35 <td class="HeaderBarTabBack" nowrap width="100%">
36 <uc1:BlogStats id="BlogStats" runat="server"></uc1:BlogStats>
37 </td>
38 </tr>
39 </table>
40</div>
41