Posted on: 1/1/2014 5:39:11 PM | Views : 609

Hello guys
Is that enough to protect my page:
        bool flag = true;         using (SqlConnection con = new SqlConnection())         {             con.ConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();             con.Open();             using (SqlCommand cmd = new SqlCommand())             {                 cmd.CommandText = "select * from [access]";                 cmd.Connection = con; ...

Go to the complete details ...