I would like to have my accounts shown like below (In a List)
<div id=AccountDiv" class"account-table">
<div class="color-1">
<h3>Account Information</h3>
<ul>
<li style="text-align: left" >Electric: Austin Energy - 10265</li>
<li style="text-align: left">Gas: Texas Gas Service - 15754892 </li>
<li style="text-align: left">Propane: Propane Austin - 577-12</li>
</ul>
</div>
<div>
I would like to pull each account information from a database dynamically. I'm new to asp.net so I wrote the below
<div id=AccountDiv" class"account-table">
<asp:Panel ID="AccountDiv" runat="server" CssClass="account-table">
<div class="color-1">
<h3>Account Information</h3>
<ul>
</ul>
</div>
<asp:Panel>
<div>
This is what I wrote back-end.
void PopulateAccountInformation()
{
DataAccess da = new DataAccess();
da.AddParameter("SiteID", SiteID, DataAccess.SQLDataType.SQLInteger, 4);
SiteHeader = da.runSPDataSet("GetSiteAccountList");
for (int i = 0; i < SiteHeader.Tables[0].Rows.Count; i++)
{
Label LabelAccount = new Label();
LabelAccount.Text = "Account Number: " + SiteHeader.Tables[0].Rows[i]["Account Number"].ToString();
AccountDiv.Controls.Add(LabelAccount);
AccountDiv.Controls.Add(new LiteralControl("<br />"));
}
}
It displays the information like:
Account Number: 3 786 843-7
Account Number: 6 520 325-9
Account Number: 80-000178814-0162499-3
Account Number: 100269408-Swr
Account Number: 100034269
Account Number: 100269408
Which is nice, but How to I write it so it makes a list for each Account?
Thanks
