private void Llenar()
 {
     cdc = new ConexionLQDataContext();
     AutList.DataSource = cdc.Autor.OrderBy(x => x.Nombre);
     AutList.DataBind();
 }
 protected void Button1_Click(object sender, EventArgs e)
 {
     cdc = new ConexionLQDataContext();
     AutList.DataSource = cdc.Autor.Where(x => x.Nombre.Contains(txt_buscar.Text.Trim())).OrderBy(x => x.Nombre);
     AutList.DataBind();
 }