What would be the best way to avoid SQL injection on the C#.net platform.
Please post an C# implementation if you have any.
|
5
|
What would be the best way to avoid SQL injection on the C#.net platform. Please post an C# implementation if you have any.
|
|||
|
|
|
|
Top 10 things we can do to be safe (No one of these will do it all.)
And #11, always revisit/revise this list. Always be up to date. Be proactive. Make it an upfront priority and requirement, not an after thought. |
||
|
|
|
|
There's no algorithm needed - just don't use string concatenation to build SQL statements. Use the SqlCommand.Parameters collection instead. This does all the necessary escaping of values (such as replacing e.g. calling a stored procedure:
This technique also works for inline SQL statements, e.g.
|
||||||
|
|
|
its better to look at this link |
||
|
|