hi guys,
can you please confirm if this code that you have provided above safe from SQL injection?
{% if (QueryString.GetValue("key", "")!="") { string.FormatString("(VideoTitle LIKE '%{0}%' OR Description LIKE '%{0}%')", SQLEscape(QueryString.GetValue("key", ""))) } |(handlesqlinjection)false |(identity)GlobalAdministrator%}
correct me if i'm wrong, by using SQLEscape will prevent any SQL injection as we by passed it using |(handlesqlinjection)false ?
thanks in advance