Users Pricing

forum

Home Forums Add title to links of this menu in c# – MindStick

Add title to links of this menu in c#

Tom Cruser 2174 28 Oct 2014
How can I add title to all links of menu that create with this code on c# ?
and the title I need is menu name and can I add h2 property to all link? if your answer is yes so please help me to do this. 

DataTable table = new DataTable();
        string strCon = System.Configuration.ConfigurationManager.ConnectionStrings["awdbCS"].ConnectionString;
        SqlConnection conn = new SqlConnection(strCon);
        string sql = "select menu_id, menu_name, menu_parent_id, menu_url from menuMaster order by place";
        SqlCommand cmd = new SqlCommand(sql, conn);
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        da.Fill(table);
        DataView view = new DataView(table);
        view.RowFilter = "menu_parent_id = 0 ";
        foreach (DataRowView row in view)
        {
            MenuItem menuItem = new MenuItem(row["menu_name"].ToString(), row["menu_id"].ToString());
            menuItem.NavigateUrl = row["menu_url"].ToString();
            menuBar.Items.Add(menuItem);
            AddChildItems(table, menuItem);

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md