How to Display URL link in ListView using C#

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

    Hi,

    Is this code correct for displaying URL in listview?

    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.

“In order to understand recursion, one must first understand recursion.”