sqlcommand cmd = new sqlcommand("insert into register values(@name,@phone_no"),connection);
cmd.parameters.add('@name',name);
cmd.parameters.add('@phone_no',phone_no);
does these things could be trespassed , or the malicious instruments are completely nullified
And how to secure data tampering ?
Akkiraju IvaturiPosted Jan 19, 2013, 10:40 PM
Validating data as much as you can will provide more security to your application. So, what you asked is going to be a secured code for sure. But additional validations definitely helps you.