C# Web gridview sortin
- by tommypiaa
Any examples how would I enable sorting for the gridview?
private void loadlist()
{
cn.Open();
cmd.CommandText = "select Breed, Name, Image from Animals";
dr = cmd.ExecuteReader();
cn.Close();
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
}
…