icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Saturday, 19 May 2018

What is Sql Injection Technique and How to describe in Asp.Net

SQL Injection is a code injection technique. It is the placement of malicious code in SQL strings. SQL Injection is one of the most common web hacking techniques. These attacks only work with apps that internally use SQL. first we make a table  Customer in sql server create table Customer ( SrNo int identity(1,1), Name  varchar(50), Gender varchar(50), Email_Id varchar (50) primary key, Password varchar...