C# - How to Display URL link in ListView

SQL Server , ASP.NET , Csharp Bolton, United Kingdom
  • 10 years ago

    Is this code correct?

    public void getCategories(SqlUtils db) { string sql = "SELECT CategoryID,Description FROM Category WHERE Enabled = 1"; DataTable categories = new DataTable(); string cats = "";

        categories = db.FillTable(sql);
    
        foreach (DataRow dr in categories.Rows)
        {
            dr["Description"] = Server.HtmlDecode(string.Format("<a href='{0}'>{1}</a><img src='images/nav_category_block.gif' width='14' height='6' />", GenerateURL((string)dr["description"].ToString()), (string)dr["Description"]));
        }
    
        Listview1.DataSource = categories;
    }
    

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Most software today is very much like an Egyptian pyramid with millions of bricks piled on top of each other, with no structural integrity, but just done by brute force and thousands of slaves” - Alan Kay