This Survival Guide has been adopted!

Members of the Community are systematically enhancing the content in this guide by identifying missing areas (scenarios, features, lifecycle...), providing links and descriptions to existing content, and providing new content where there are gaps.

Our current theme is "Establish a Baseline". Review the article and suggest new sections, missing content, and other ideas.


Download

You can download the Wiki Toolbox from: http://wikitoolbox.codeplex.com/

The toolbox allows to copy the HTML code below into memory and paste it in to your article directly.



Note Box

Example

 Note
Add your text here.

HTML Code 

<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
    <tr>
        <th style="text-align: left; padding-bottom: 5px; background-color: darkgray; padding-left: 5px; padding-top: 5px;">
        <strong>Note</strong> </th>
    </tr>
    <tr>
        <td style="background-color: whitesmoke; padding-left: 5px;">Add your text 
        here.</td>
    </tr>
</table>


↑ Back to top


Tip Box

Example

 Tip
Add your text here.

HTML Code 

<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
    <tr>
        <th style="text-align: left; padding-bottom: 5px; background-color: darkgray; padding-left: 5px; padding-top: 5px;">
        <strong>Tip</strong></th>
    </tr>
    <tr>
        <td style="background-color: whitesmoke; padding-left: 5px;">Add your text 
        here.</td>
    </tr>
</table>


↑ Back to top


Caution Box

Example

 Caution
Add your text here.

HTML Code

<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
    <tr>
        <th style="text-align: left; padding-bottom: 5px; background-color: darkgray; padding-left: 5px; padding-top: 5px;">
        <strong>Caution</strong> </th>
    </tr>
    <tr>
        <td style="background-color: whitesmoke; padding-left: 5px;">Add your text 
        here.</td>
    </tr>
</table>


↑ Back to top


Important Box

Example

 Important
Add your text here.

HTML Code

<table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
    <tr>
        <th style="text-align: left; padding-bottom: 5px; background-color: darkgray; padding-left: 5px; padding-top: 5px;">
        Important </th>
    </tr>
    <tr>
        <td style="background-color: whitesmoke; padding-left: 5px;">Add your text 
        here.</td>
    </tr>
</table>


↑ Back to top


Plain Code Box

No highlighting and numbering. Good for command line samples and other small code examples.

HTML Code

            <table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse: collapse;">
    <tr>
        <td style="background-color: whitesmoke; padding-left: 5px;font-family: Consolas, Lucida Console, Courier New, Courier, Monospace;">
           Type your code here!
        </td>
    </tr>
</table>

 

↑ Back to top


Other Languages

 

↑ Back to top