You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["testConnectionString"].ConnectionString);
SqlDataAdapter ad = new SqlDataAdapter("select * from test where id=" + GridView1.SelectedDataKey.Values[0].ToString() + " and title='" + GridView1.SelectedDataKey.Values[1].ToString()+"'", conn);