Please us the editor to format your code in more readable segments using a formatting tag.
Examples:
[code]
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}
[/code]
[php]
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}
[/php]
[HIGHLIGHT="VB.NET"]
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}
[/HIGHLIGHT]
Which Formats your text like so:
Code:
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}
PHP Code:
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}
VB.NET Code:
for (int j = 1; j < 4; j++)
{
HtmlTableCell cell = new HtmlTableCell();
cell.ID = "cell" + j;
cell.InnerHtml = "cell" + i + j;
row.Cells.Add(cell);
}