hi this is my connection string
SqlConnection conn = new SqlConnection("Data Source=RAVI-PC\\SQLEXPRESS;Initial Catalog=personals;User ID=sa;password=sa;Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter(" select * from table_2", conn);
DataSet ds = new DataSet();
da.Fill(ds, "table_1");
conn.Open();
Actually my doubt is how to insert(data entered in texbox) and delete and update view record from asp.net sql database . I searched on google but i cannt understand its very difficult so post simplest coding .i attached my web application . thaks