I have a menu on my masterpage / defaultpage where I'm listing x categories. I would like to make a count of how many products there are in each category.
EX:
Bananas(20)
Apples(8)
Strawberries(5)
So far, I have this:
var listSubMenu = __account.GetAllProductCategories();
var sb = new StringBuilder();
for (int i = 0; i < listSubMenu.Rows.Count; i++)
{
var r = listSubMenu.Rows[i];
var catid = Request.QueryString["thespecific_category_id_but_how_do_i_get_it?"];
var count = __account.GetSpecificCategory(id);
sb.AppendFormat(String.Format(@"<li{0}><a href='/account/products.aspx?categoryid={0}'>{1} ({2})</a></li>", r["cat_id"], r["cat_name"], count.Rows.Count));
}
active_sub_products.Text = sb.ToString();
My DataTable:
public DataTable GetAllProductCategories()
{
const string request =
@"
SELECT * FROM products_category
WHERE cat_active = 1
ORDER BY cat_name ASC
";
using (var query = new MySqlCommand(request))
{
return __dbConnect.GetData(query);
}
}
Obiously i need the specific categoryid, but how to I request that without having querystrings running since it is on the default page. Am I missing something obious?
Thanks alot.