Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Example: Assumes Nortwind Database and that sqlConnection1 has already been initialized
sqlConnection1.Open();
SqlCommand cmd = new SqlCommand("select * from Categories where CategoryID=@CatId",sqlConn
// Create a new parameter with the name of the parameter and in this case the value
SqlParameter par = new SqlParameter("@CatId",2);
cmd.Parameters.Add(par);
SqlDataReader dr = cmd.ExecuteReader();
while(dr.Read())
{
MessageBox.Show(dr[0].ToSt
}
sqlConnection1.Close();