Hi please i want to be able to enter values into a textbox, the textbox is for taking in comments, in all laguages meaning i should be able to allow special characters , this comment goes into a field in the database with text type
how do i achieve this without compromizing security or even crashing the application ?

Wim SturkenboomPosted Oct 14, 2014, 8:25 AM
Further to keep it safe, use parameter queries. This will make sure that the data is treated as data and not as part of the sql statement and hence prevents sql injection.