Archive for April 9th, 2009

Using Parameters/Parameterized Queries in database interactions with C# and VB.NET

When writing ASP.NET applications, you need to be careful with your code to protect from misuse by would be hackers. One of the best ways to do this is to parametrize your queries. Not only will using parameters help against SQL injection attacks, but it’s best practice to do so and avoid large string concatenation….

Read More