Sql Injection Prevention
Posted
on C# Corner
See other posts from C# Corner
Published on Apr 20, 2010
Indexed on
2010/04/20
15:04 UTC
Read the original article
Hit count: 298
Filed under:
To protect your application from SQL injection, perform the following steps:
* Step 1. Constrain input.
* Step 2. Use parameters with stored procedures.
* Step 3. Use parameters with dynamic SQL.
© C# Corner or respective owner