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 ...