SQL injection protection on the ASP.NET login control? -


how sql injection protection on asp.net login control? contains protection againts sql injection attack? otherwise, how should do?

asp.net automatically prevent injections through inputs. if have

<pages enableviewstatemac="true"></pages> 

in web.config should okay.

update #:

you can use add

<%@ language="c#" validaterequest="false" %> 

to top of page


Comments