Recent content by tetey_mallar

  1. T

    Why does my datagridview in ASP.net can't be clicked?

    I want to transfer the data in datagridview to textbox, nothing happens when i click a cell. This is my code: protected void GridView1_SelectedIndexChanged(object sender, EventArgs e) { GridViewRow row = GridView1.SelectedRow; tbairplaneid.Text = row.Cells[0].Text...
Back
Top