skip to Main Content

SQLCommand AddWithValue – What am I doing wrong? – Asp.net

protected void gridOmniZone_RowUpdating(object sender, GridViewUpdateEventArgs e) { GridViewRow row = gridOmniZone.Rows[e.RowIndex]; Int64 ID = Convert.ToInt64(gridOmniZone.DataKeys[e.RowIndex].Values[0]); string Description = (row.Cells[2].Controls[1] as TextBox).Text; string LatCenter = (row.Cells[3].Controls[1] as TextBox).Text; string LongCenter = (row.Cells[4].Controls[1] as TextBox).Text; string Radius = (row.Cells[5].Controls[1] as TextBox).Text; string…

VIEW QUESTION
Back To Top
Search